blob: 73d804d078d44c1677d1e43c668cd022f84e90ed (
plain)
1
2
3
4
5
6
7
8
9
|
<?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'
?>
|