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

testGoodFloatValue() public method

public testGoodFloatValue ( )
    public function testGoodFloatValue()
    {
        $this->expectPassesRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            floatArgField(floatArg: 1.1)
          }
        }
        ');
    }
ArgumentsOfCorrectTypeTest