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

testLoadNonExistentTranslation() public method

    public function testLoadNonExistentTranslation()
    {
        $this->insertDatabaseFixture(__DIR__ . '/../_fixtures/contentobjects.php');
        $gateway = $this->getDatabaseGateway();
        $res = $gateway->load(226, 2, array('de-DE'));
        $this->assertEquals(0, count($res));
    }
DoctrineDatabaseTest