Pinq\Tests\Integration\Queries\QueryBuildingTestsTrait::testExampleFromDocs PHP Method

testExampleFromDocs() public method

public testExampleFromDocs ( )
    public function testExampleFromDocs()
    {
        $this->assertRequestIsCorrect(function (IQueryable $queryable) {
            return $queryable->where(function ($row) {
                return $row['age'] <= 50;
            })->orderByAscending(function ($row) {
                return $row['firstName'];
            })->thenByAscending(function ($row) {
                return $row['lastName'];
            })->take(50)->indexBy(function ($row) {
                return $row['phoneNumber'];
            })->select(function ($row) {
                return ['fullName' => $row['firstName'] . ' ' . $row['lastName'], 'address' => $row['address'], 'dateOfBirth' => $row['dateOfBirth']];
            });
        }, $this->exampleFromDocsQuery());
    }
QueryBuildingTestsTrait