GraphQL\Tests\Validator\VariablesAreInputTypesTest::testInputTypesAreValid PHP Method

testInputTypesAreValid() public method

    public function testInputTypesAreValid()
    {
        $this->expectPassesRule(new VariablesAreInputTypes(), '
      query Foo($a: String, $b: [Boolean!]!, $c: ComplexInput) {
        field(a: $a, b: $b, c: $c)
      }
        ');
    }