Pinq\Tests\Integration\Queries\QueryBuildingTestsTrait::testCount PHP 메소드

testCount() 공개 메소드

public testCount ( )
    public function testCount()
    {
        $this->assertRequestIsCorrect(function (IQueryable $queryable) {
            $queryable->count();
        }, $this->countQuery(), true);
        $this->assertRequestIsCorrect(function (IQueryable $queryable) {
            count($queryable);
        }, $this->countQuery(), true);
    }
QueryBuildingTestsTrait