blob: 095cf36e7188ba1e95b8ed05fc4ba7bda37a083c (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | <?php
/**
 * Prepare the application for unit testing
 */
$_SERVER['HTTP_HOST'] = 'http://localhost/';
define('UNIT_TEST_MODE', true);
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
require_once dirname(__FILE__) . '/TestBase.php';
?>
 |