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

testEmptyListValue() public method

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