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

testGoodListValue() public method

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