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

testSecondArgOnMultipleOptional() public method

    public function testSecondArgOnMultipleOptional()
    {
        $this->expectPassesRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            multipleOpts(opt2: 1)
          }
        }
        ');
    }
ArgumentsOfCorrectTypeTest