GraphQL\Tests\Validator\ArgumentsOfCorrectTypeTest::testGoodStringValue PHP Method

testGoodStringValue() public method

public testGoodStringValue ( )
    public function testGoodStringValue()
    {
        $this->expectPassesRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            stringArgField(stringArg: "foo")
          }
        }
        ');
    }
ArgumentsOfCorrectTypeTest