Pinq\Tests\Integration\Queries\QueryResolutionTest::testJoinWithDefault PHP Method

testJoinWithDefault() public method

public testJoinWithDefault ( )
    public function testJoinWithDefault()
    {
        $this->assertRequestIsCorrect(function (IQueryable $queryable) {
            return $queryable->join(['111'])->withDefault('<VALUE>', '<KEY>')->to('strlen');
        }, $this->resolvedRequest([['111'], '<VALUE>', '<KEY>', 'strlen', null]));
    }