X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=tests%2FTest.php;h=400f417adaab5bb32f6e233f8677bf957e0cad7e;hp=3c12cf40c8ab61a64112c0270f1f6fb28619131a;hb=1b91533196685d29640d1593b713361745889095;hpb=0cd57c3885f00ad77fc599e53ed2f2d5e7ac267f diff --git a/tests/Test.php b/tests/Test.php index 3c12cf40..400f417a 100644 --- a/tests/Test.php +++ b/tests/Test.php @@ -8,10 +8,10 @@ print (basename(__FILE__).": Init...\n"); require(dirname(dirname(__FILE__)) . '/inc/config.php'); // Load all include files -require($cfg->readConfig('base_path') . 'inc/includes.php'); +require($cfg->getConfigEntry('base_path') . 'inc/includes.php'); // Load all game classes -require($cfg->readConfig('base_path') . 'inc/classes.php'); +require($cfg->getConfigEntry('base_path') . 'inc/classes.php'); // Set default application FrameworkConfiguration::getInstance()->setConfigEntry('default_application', 'ship-simu'); @@ -20,7 +20,7 @@ FrameworkConfiguration::getInstance()->setConfigEntry('default_application', 'sh define('TEST_MODE', true); // Load the PHPUnit framework -require_once('PHPUnit/Framework.php'); +require('PHPUnit/Framework.php'); print (basename(__FILE__).": Init completed.\n\n"); die("You need to remove this line (".__LINE__.") and implement this test!\n");