public function InstallerExistingConfigProfileHookInstall::testConfigSync in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigProfileHookInstall.php \Drupal\FunctionalTests\Installer\InstallerExistingConfigProfileHookInstall::testConfigSync()
Confirms the installation has failed and the expected error is displayed.
Overrides InstallerExistingConfigTestBase::testConfigSync
File
- core/
tests/ Drupal/ FunctionalTests/ Installer/ InstallerExistingConfigProfileHookInstall.php, line 56
Class
- InstallerExistingConfigProfileHookInstall
- Verifies that profiles with hook_install() can't be installed from config.
Namespace
Drupal\FunctionalTests\InstallerCode
public function testConfigSync() {
$this
->assertSession()
->titleEquals('Requirements problem | Drupal');
$this
->assertSession()
->pageTextContains($this->profile);
$this
->assertSession()
->pageTextContains('The selected profile has a hook_install() implementation and therefore can not be installed from configuration.');
}