eZ\Publish\Core\Persistence\Legacy\Tests\Content\UrlWildcard\UrlWildcardHandlerTest::testLoadAllWithOffsetAndLimit PHP Method

testLoadAllWithOffsetAndLimit() public method

Test for the loadAll() method.
    public function testLoadAllWithOffsetAndLimit()
    {
        $this->insertDatabaseFixture(__DIR__ . '/Gateway/_fixtures/urlwildcards.php');
        $handler = $this->getHandler();
        $urlWildcards = $handler->loadAll(1, 1);
        self::assertEquals(array(new UrlWildcard($this->fixtureData[1])), $urlWildcards);
    }