From 21db3ef6daeaa4d0da05a7e89c30244e9caff0fd Mon Sep 17 00:00:00 2001 From: cweiske Date: Sun, 25 Oct 2009 15:39:36 +0000 Subject: 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 --- src/SemanticScuttle/header.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src') diff --git a/src/SemanticScuttle/header.php b/src/SemanticScuttle/header.php index 4857054..9615199 100644 --- a/src/SemanticScuttle/header.php +++ b/src/SemanticScuttle/header.php @@ -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 -- cgit v1.2.3-54-g00ecf