You are here

UpdatePathWithBrokenRoutingFilledTest.php in Zircon Profile 8

File

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

/**
 * @file
 * Contains \Drupal\system\Tests\Update\UpdatePathWithBrokenRoutingFilledTest.
 */
namespace Drupal\system\Tests\Update;


/**
 * Runs UpdatePathWithBrokenRoutingTest with a dump filled with content.
 *
 * @group Update
 */
class UpdatePathWithBrokenRoutingFilledTest extends UpdatePathWithBrokenRoutingTest {

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

}

Classes

Namesort descending Description
UpdatePathWithBrokenRoutingFilledTest Runs UpdatePathWithBrokenRoutingTest with a dump filled with content.