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

testAllReqsAndOptsOnMixedList() public method

    public function testAllReqsAndOptsOnMixedList()
    {
        $this->expectPassesRule(new ArgumentsOfCorrectType(), '
        {
          complicatedArgs {
            multipleOptAndReq(req1: 3, req2: 4, opt1: 5, opt2: 6)
          }
        }
        ');
    }
ArgumentsOfCorrectTypeTest