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

testLoadUrlWildcardsDataWithOffset() public method

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