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