GraphQL\Tests\Validator\ArgumentsOfCorrectTypeTest::testUnquotedIntoBoolean PHP 메소드

testUnquotedIntoBoolean() 공개 메소드

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