protected function visitInstaller() { // Create an .install file with a hook_install() implementation.
$path =
$this->siteDirectory . '/profiles/' .
$this->profile;
$contents = <<<EOF
<?php
function testing_config_install_multilingual_install() {
}
EOF;
file_put_contents("
$path/{
$this->profile
}.install",
$contents);
parent::
visitInstaller();
} /**
* Installer step: Select installation profile.
*/
protected function setUpProfile() { // This is the form we are testing so wait until the test method to do
// assertions.
} /**
* Installer step: Requirements problem.
*/