public function StringTest::testUppercaseProvider in GraphQL 8.4
Tests the upper case data producer.
File
- tests/
src/ Kernel/ DataProducer/ StringTest.php, line 30
Class
- StringTest
- Data producers String test class.
Namespace
Drupal\Tests\graphql\Kernel\DataProducerCode
public function testUppercaseProvider() : array {
return [
[
'test',
'TEST',
],
[
'123 ..!!',
'123 ..!!',
],
[
'test123',
'TEST123',
],
];
}