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

testNullValue() public method

public testNullValue ( )
    public function testNullValue()
    {
        $this->expectPassesRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            stringListArgField(stringListArg: null)
          }
        }
        ');
    }
ArgumentsOfCorrectTypeTest