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

testGoodIntValue() public method

public testGoodIntValue ( )
    public function testGoodIntValue()
    {
        $this->expectPassesRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            intArgField(intArg: 2)
          }
        }
        ');
    }
ArgumentsOfCorrectTypeTest