GraphQL\Tests\Validator\OverlappingFieldsCanBeMergedTest::testAllowsInlineTypelessFragments PHP Method

testAllowsInlineTypelessFragments() public method

    public function testAllowsInlineTypelessFragments()
    {
        $this->expectPassesRuleWithSchema($this->getTestSchema(), new OverlappingFieldsCanBeMerged(), '
        {
          a
          ... {
            a
          }
        }
        ');
    }