X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2FRequestTest.php;h=784239f14529b0f5174dd4d3af2321ae60237fe6;hb=7c1f6da0bb508c369410ff7fed93395bd9a9e65a;hp=a32dfe783159d85fc9fd776afd6632cba9160ac3;hpb=78a010fef84895720e796842208f01dfb619c332;p=core.git diff --git a/tests/RequestTest.php b/tests/RequestTest.php index a32dfe78..784239f1 100644 --- a/tests/RequestTest.php +++ b/tests/RequestTest.php @@ -5,13 +5,13 @@ print (basename(__FILE__).": Init...\n"); @chdir(".."); // Load config file -require(dirname(dirname(__FILE__)) . '/framework/config.php'); +require dirname(dirname(__FILE__)) . '/framework/config.php'; // Load all include files -require($cfg->getConfigEntry('base_path') . 'framework/includes.php'); +require $cfg->getConfigEntry('framework_base_path') . 'includes.php'; // Load all game classes -require($cfg->getConfigEntry('base_path') . 'framework/classes.php'); +require $cfg->getConfigEntry('framework_base_path') . 'classes.php'; // Set default application FrameworkConfiguration::getInstance()->setConfigEntry('default_application', 'shipsimu'); @@ -20,7 +20,7 @@ FrameworkConfiguration::getInstance()->setConfigEntry('default_application', 'sh define('TEST_MODE', true); // Load the PHPUnit framework -require('PHPUnit/Framework.php'); +require 'PHPUnit/Framework.php'; print (basename(__FILE__).": Init completed.\n\n"); @@ -98,5 +98,3 @@ class RequestTest extends PHPUnit_Framework_TestCase { } } } - -?>