4eaec54e366ec985a2312282ff86e3c894832086
[yaffs-website] / web / core / modules / system / tests / src / Functional / Update / UpdatePathWithBrokenRoutingFilledTest.php
1 <?php
2
3 namespace Drupal\Tests\system\Functional\Update;
4
5 /**
6  * Runs UpdatePathWithBrokenRoutingTest with a dump filled with content.
7  *
8  * @group Update
9  * @group legacy
10  */
11 class UpdatePathWithBrokenRoutingFilledTest extends UpdatePathWithBrokenRoutingTest {
12
13   /**
14    * {@inheritdoc}
15    */
16   protected function setDatabaseDumpFiles() {
17     parent::setDatabaseDumpFiles();
18     $this->databaseDumpFiles[0] = __DIR__ . '/../../../../tests/fixtures/update/drupal-8.filled.standard.php.gz';
19   }
20
21 }