Pinq\Tests\Integration\Queries\QueryBuildingTestsTrait::testIndexBy PHP Метод

testIndexBy() публичный Метод

public testIndexBy ( )
    public function testIndexBy()
    {
        $this->assertRequestIsCorrect(function (IQueryable $queryable) {
            return $queryable->indexBy(function ($i) {
                return $i;
            });
        }, $this->indexByQuery());
    }
QueryBuildingTestsTrait