public function TestSiteInstallTestScript::setup in Quicklink 8
Same name and namespace in other branches
- 2.0.x tests/src/Nightwatch/TestSiteInstallTestScript.php \Drupal\TestSite\TestSiteInstallTestScript::setup()
Run the code to setup the test environment.
You have access to any API provided by any installed module. For example, to install modules use:
\Drupal::service('module_installer')
->install([
'my_module',
]);
Check out TestSiteInstallTestScript for an example.
Overrides TestSetupInterface::setup
See also
\Drupal\TestSite\TestSiteInstallTestScript
File
- tests/
src/ Nightwatch/ TestSiteInstallTestScript.php, line 15
Class
- TestSiteInstallTestScript
- Setup file used by TestSiteApplicationTest.
Namespace
Drupal\TestSiteCode
public function setup() {
\Drupal::service('module_installer')
->install([
'quicklink',
]);
}