silverstripe-cms/tests/bootstrap/init.php

13 lines
413 B
PHP
Raw Permalink Normal View History

<?php
2017-01-25 21:59:25 +01:00
if (!defined('FRAMEWORK_PATH')) {
echo "FRAMEWORK_PATH hasn't been defined. This probably means that framework/Core/Constants.php hasn't been " .
"included by Composer's autoloader.\n" .
"Make sure the you are running your tests via vendor/bin/phpunit and your autoloader is up to date.\n";
exit(1);
}
if (empty($_SERVER['HTTP_HOST'])) {
2017-01-25 21:59:25 +01:00
$_SERVER['HTTP_HOST'] = 'localhost';
}