]> git.mxchange.org Git - core.git/blobdiff - tests/ConfigTest.php
fixed namespace for FiLoStacker + removed config entry which does not point to
[core.git] / tests / ConfigTest.php
index 968452a51bfd8b2a9268834fbb357d1d1c7e343b..2896d393c55dc481ef5088d090d36a5657b5e4d0 100644 (file)
@@ -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('framework_base_path') . 'includes.php');
+require $cfg->getConfigEntry('framework_base_path') . 'includes.php';
 
 // Load all game classes
-require($cfg->getConfigEntry('framework_base_path') . '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");
 
@@ -149,5 +149,3 @@ class ConfigTest extends PHPUnit_Framework_TestCase {
                }
        }
 }
-
-?>