protected function UpdatePathTestTrait::ensureUpdatesToRun in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/UpdatePathTestTrait.php \Drupal\Tests\UpdatePathTestTrait::ensureUpdatesToRun()
Installs the update_script_test module and makes an update available.
5 calls to UpdatePathTestTrait::ensureUpdatesToRun()
- BrokenCacheUpdateTest::setUp in core/modules/ system/ tests/ src/ Functional/ UpdateSystem/ BrokenCacheUpdateTest.php 
- DatabaseVersionCheckUpdateTest::setUp in core/modules/ system/ tests/ src/ Functional/ Update/ DatabaseVersionCheckUpdateTest.php 
- EntityUpdateInitialTest::setUp in core/modules/ system/ tests/ src/ Functional/ UpdateSystem/ EntityUpdateInitialTest.php 
- UpdatePathTestJavaScriptTest::setUp in core/modules/ system/ tests/ src/ Functional/ UpdateSystem/ UpdatePathTestJavaScriptTest.php 
- UpdatePathWithBrokenRoutingTest::setUp in core/modules/ system/ tests/ src/ Functional/ UpdateSystem/ UpdatePathWithBrokenRoutingTest.php 
File
- core/tests/ Drupal/ Tests/ UpdatePathTestTrait.php, line 162 
Class
- UpdatePathTestTrait
- Trait UpdatePathTestTrait
Namespace
Drupal\TestsCode
protected function ensureUpdatesToRun() {
  \Drupal::service('module_installer')
    ->install([
    'update_script_test',
  ]);
  // Reset the schema so there is an update to run.
  \Drupal::database()
    ->update('key_value')
    ->fields([
    'value' => serialize(8000),
  ])
    ->condition('collection', 'system.schema')
    ->condition('name', 'update_script_test')
    ->execute();
}