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

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

public testBooleanIntoEnum ( )
    public function testBooleanIntoEnum()
    {
        $this->expectFailsRule(new ArgumentsOfCorrectType(), '
        {
          dog {
            doesKnowCommand(dogCommand: true)
          }
        }
        ', [$this->badValue('dogCommand', 'DogCommand', 'true', 4, 41)]);
    }
ArgumentsOfCorrectTypeTest