eZ\Publish\Core\Persistence\Legacy\Tests\Content\UrlWildcard\Gateway\DoctrineDatabaseTest::testLoadUrlWildcardsDataWithOffsetAndLimit PHP Method

testLoadUrlWildcardsDataWithOffsetAndLimit() public method

Test for the loadUrlWildcardsData() method.
    public function testLoadUrlWildcardsDataWithOffsetAndLimit()
    {
        $this->insertDatabaseFixture(__DIR__ . '/_fixtures/urlwildcards.php');
        $gateway = $this->getGateway();
        $row = $gateway->loadUrlWildcardsData(1, 1);
        self::assertEquals(array(0 => $this->fixtureData[1]), $row);
    }