eZ\Publish\Core\Search\Legacy\Tests\Content\HandlerContentTest::testFindWithoutOffsetLimit PHP Method

testFindWithoutOffsetLimit() public method

Bug #80.
    public function testFindWithoutOffsetLimit()
    {
        $locator = $this->getContentSearchHandler();
        $result = $locator->findContent(new Query(array('filter' => new Criterion\ContentId(10))));
        $this->assertEquals(1, $result->totalCount);
    }
HandlerContentTest