You are here

protected function DisabledResultCacheTest::setUp in GraphQL 8.4

Overrides GraphQLTestBase::setUp

File

tests/src/Kernel/Framework/DisabledResultCacheTest.php, line 19

Class

DisabledResultCacheTest
Test disabled result cache.

Namespace

Drupal\Tests\graphql\Kernel\Framework

Code

protected function setUp() : void {
  parent::setUp();
  $schema = <<<GQL
      type Query {
        root: String
      }
GQL;
  $this
    ->setUpSchema($schema);
}