GraphQL\Tests\Validator\ArgumentsOfCorrectTypeTest::testStringIntoInt PHP Метод

testStringIntoInt() публичный Метод

public testStringIntoInt ( )
    public function testStringIntoInt()
    {
        $this->expectFailsRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            intArgField(intArg: "3")
          }
        }
        ', [$this->badValue('intArg', 'Int', '"3"', 4, 33)]);
    }
ArgumentsOfCorrectTypeTest