You are here

SqlContentEntityStorageSchemaIndexFilledTest.php in Zircon Profile 8.0

File

core/modules/system/src/Tests/Entity/Update/SqlContentEntityStorageSchemaIndexFilledTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Entity\Update\SqlContentEntityStorageSchemaIndexFilledTest.
 */
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';
  }

}

Classes

Namesort descending Description
SqlContentEntityStorageSchemaIndexFilledTest Runs SqlContentEntityStorageSchemaIndexTest with a dump filled with content.