623e6c6c7c8f0db90054418f25b90ee26474c508
[yaffs-website] / web / core / modules / system / src / Tests / Entity / Update / SqlContentEntityStorageSchemaIndexFilledTest.php
1 <?php
2
3 namespace Drupal\system\Tests\Entity\Update;
4
5 /**
6  * Runs SqlContentEntityStorageSchemaIndexTest with a dump filled with content.
7  *
8  * @group Entity
9  */
10 class SqlContentEntityStorageSchemaIndexFilledTest extends SqlContentEntityStorageSchemaIndexTest {
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 }