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

testFloatIntoBoolean() public method

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