protected function DbUpdatesTrait::applyUpdates in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/src/Tests/Update/DbUpdatesTrait.php \Drupal\system\Tests\Update\DbUpdatesTrait::applyUpdates()
Applies any pending DB updates through the Update UI.
3 calls to DbUpdatesTrait::applyUpdates()
- UpdateApiEntityDefinitionUpdateTest::testMultipleUpdates in core/
modules/ system/ src/ Tests/ Entity/ Update/ UpdateApiEntityDefinitionUpdateTest.php - Tests that multiple updates applied in bulk work as expected.
- UpdateApiEntityDefinitionUpdateTest::testSingleUpdates in core/
modules/ system/ src/ Tests/ Entity/ Update/ UpdateApiEntityDefinitionUpdateTest.php - Tests that individual updates applied sequentially work as expected.
- UpdateApiEntityDefinitionUpdateTest::testStatusReport in core/
modules/ system/ src/ Tests/ Entity/ Update/ UpdateApiEntityDefinitionUpdateTest.php - Tests that entity updates are correctly reported in the status report page.
File
- core/
modules/ system/ src/ Tests/ Update/ DbUpdatesTrait.php, line 40 - Contains \Drupal\system\Tests\Update\DbUpdatesTrait.
Class
- DbUpdatesTrait
- Provides methods to conditionally enable db update functions and apply pending db updates through the Update UI.
Namespace
Drupal\system\Tests\UpdateCode
protected function applyUpdates() {
$this
->drupalGet(Url::fromRoute('system.db_update'));
$this
->clickLink($this
->t('Continue'));
$this
->clickLink($this
->t('Apply pending updates'));
}