function ConfigInstallProfileUnmetDependenciesTest::setUpSettings
Installer step: Configure settings.
Overrides InstallerTestBase::setUpSettings
File
- 
              core/modules/ config/ tests/ src/ Functional/ ConfigInstallProfileUnmetDependenciesTest.php, line 51 
Class
- ConfigInstallProfileUnmetDependenciesTest
- Tests install profile config overrides can not add unmet dependencies.
Namespace
Drupal\Tests\config\FunctionalCode
public function setUpSettings() {
  // During set up an UnmetDependenciesException should be thrown, which will
  // be re-thrown by TestHttpClientMiddleware as a standard Exception.
  try {
    parent::setUpSettings();
  } catch (\Exception $exception) {
    $this->expectedException = $exception;
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
