You are here

EntityViewsDataUpdateFilledTest.php in Drupal 8

File

core/modules/views/tests/src/Functional/Update/EntityViewsDataUpdateFilledTest.php
View source
<?php

namespace Drupal\Tests\views\Functional\Update;


/**
 * Runs EntityViewsDataUpdateTest with a dump filled with content.
 *
 * @group Update
 * @group legacy
 */
class EntityViewsDataUpdateFilledTest extends EntityViewsDataUpdateTest {

  /**
   * {@inheritdoc}
   */
  protected function setDatabaseDumpFiles() {
    parent::setDatabaseDumpFiles();
    $this->databaseDumpFiles[0] = __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.filled.standard.php.gz';
  }

}

Classes

Namesort descending Description
EntityViewsDataUpdateFilledTest Runs EntityViewsDataUpdateTest with a dump filled with content.