protected function InstallerTestBase::setUpProfile in SimpleTest 8.3
Installer step: Select installation profile.
1 call to InstallerTestBase::setUpProfile()
- InstallerTestBase::setUp in src/
InstallerTestBase.php - Sets up a Drupal site for running functional and integration tests.
File
- src/
InstallerTestBase.php, line 198
Class
- InstallerTestBase
- Base class for testing the interactive installer.
Namespace
Drupal\simpletestCode
protected function setUpProfile() {
$edit = [
'profile' => $this->profile,
];
$this
->drupalPostForm(NULL, $edit, $this->translations['Save and continue']);
}