GraphQL\Tests\Validator\ArgumentsOfCorrectTypeTest::testGoodBooleanValue PHP Method

testGoodBooleanValue() public method

    public function testGoodBooleanValue()
    {
        $this->expectPassesRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            booleanArgField(booleanArg: true)
          }
        }
      ');
    }
ArgumentsOfCorrectTypeTest