7 lines
137 B
PHP
7 lines
137 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Prepare the application for unit testing
|
||
|
*/
|
||
|
$_SERVER['HTTP_HOST'] = 'http://localhost/';
|
||
|
define('UNIT_TEST_MODE', true);
|
||
|
?>
|