BlockContextMappingUpdateFilledTest.php 499 B

123456789101112131415161718192021
  1. <?php
  2. namespace Drupal\Tests\block\Functional\Update;
  3. /**
  4. * Runs BlockContextMappingUpdateTest with a dump filled with content.
  5. *
  6. * @group Update
  7. * @group legacy
  8. */
  9. class BlockContextMappingUpdateFilledTest extends BlockContextMappingUpdateTest {
  10. /**
  11. * {@inheritdoc}
  12. */
  13. protected function setDatabaseDumpFiles() {
  14. parent::setDatabaseDumpFiles();
  15. $this->databaseDumpFiles[0] = __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.filled.standard.php.gz';
  16. }
  17. }