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