public function QuickStartTest::testServerWithNoInstall in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Command/QuickStartTest.php \Drupal\Tests\Core\Command\QuickStartTest::testServerWithNoInstall()
Tests the server command when there is no installation.
File
- core/
tests/ Drupal/ Tests/ Core/ Command/ QuickStartTest.php, line 282
Class
- QuickStartTest
- Tests the quick-start commands.
Namespace
Drupal\Tests\Core\CommandCode
public function testServerWithNoInstall() {
$server_command = [
$this->php,
'core/scripts/drupal',
'server',
'--suppress-login',
];
$server_process = new Process($server_command, NULL, [
'DRUPAL_DEV_SITE_PATH' => $this->testDb
->getTestSitePath(),
]);
$server_process
->run();
$this
->assertStringContainsString('No installation found. Use the \'install\' command.', $server_process
->getErrorOutput());
}