protected function EntityQueryTest::setUp in GraphQL 8.3
Overrides GraphQLContentTestBase::setUp
File
- modules/
graphql_core/ tests/ src/ Kernel/ EntityQuery/ EntityQueryTest.php, line 18
Class
- EntityQueryTest
- Test entity query support in GraphQL.
Namespace
Drupal\Tests\graphql_core\Kernel\EntityQueryCode
protected function setUp() {
parent::setUp();
$this
->createContentType([
'type' => 'a',
]);
$this
->createContentType([
'type' => 'b',
]);
}