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

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

public testIntIntoBoolean ( )
    public function testIntIntoBoolean()
    {
        $this->expectFailsRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            booleanArgField(booleanArg: 2)
          }
        }
        ', [$this->badValue('booleanArg', 'Boolean', '2', 4, 41)]);
    }
ArgumentsOfCorrectTypeTest