You are here

BlockContextMappingUpdateFilledTest.php in Zircon Profile 8

File

core/modules/block/src/Tests/Update/BlockContextMappingUpdateFilledTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\block\Tests\Update\BlockContextMappingUpdateFilledTest.
 */
namespace Drupal\block\Tests\Update;


/**
 * Runs BlockContextMappingUpdateTest with a dump filled with content.
 *
 * @group Update
 */
class BlockContextMappingUpdateFilledTest extends BlockContextMappingUpdateTest {

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

}

Classes

Namesort descending Description
BlockContextMappingUpdateFilledTest Runs BlockContextMappingUpdateTest with a dump filled with content.