fix unit test runs for direct phpunit calls
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@413 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
59025b501c
commit
21db3ef6da
1 changed files with 9 additions and 0 deletions
|
@ -11,6 +11,15 @@ set_include_path(
|
|||
$datadir = dirname(__FILE__) . '/../../data/';
|
||||
require_once $datadir . '/config.default.php';
|
||||
require_once $datadir . '/config.php';
|
||||
|
||||
if (defined('UNIT_TEST_MODE')) {
|
||||
//make local config vars global - needed for unit tests
|
||||
//run with phpunit
|
||||
foreach (get_defined_vars() as $var => $value) {
|
||||
$GLOBALS[$var] = $value;
|
||||
}
|
||||
}
|
||||
|
||||
require_once 'SemanticScuttle/constants.php'; // some constants are based on variables from config file
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue