Version 1
[yaffs-website] / web / core / modules / system / src / Tests / Entity / Update / SqlContentEntityStorageSchemaIndexFilledTest.php
diff --git a/web/core/modules/system/src/Tests/Entity/Update/SqlContentEntityStorageSchemaIndexFilledTest.php b/web/core/modules/system/src/Tests/Entity/Update/SqlContentEntityStorageSchemaIndexFilledTest.php
new file mode 100644 (file)
index 0000000..623e6c6
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+
+namespace Drupal\system\Tests\Entity\Update;
+
+/**
+ * Runs SqlContentEntityStorageSchemaIndexTest with a dump filled with content.
+ *
+ * @group Entity
+ */
+class SqlContentEntityStorageSchemaIndexFilledTest extends SqlContentEntityStorageSchemaIndexTest {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setDatabaseDumpFiles() {
+    parent::setDatabaseDumpFiles();
+    $this->databaseDumpFiles[0] = __DIR__ . '/../../../../tests/fixtures/update/drupal-8.filled.standard.php.gz';
+  }
+
+}