]> git.mxchange.org Git - core.git/blobdiff - tests/Test.php
also skip one element when __callStatic is given
[core.git] / tests / Test.php
index 5895ff06e945ce161b7928220b9f1fc85aa90596..f9f1952f21846f7230389e9d58706299ed137ae2 100644 (file)
@@ -5,22 +5,22 @@ print (basename(__FILE__).": Init...\n");
 @chdir("..");
 
 // Load config file
-require(dirname(dirname(__FILE__)) . '/inc/config.php');
+require dirname(dirname(__FILE__)) . '/framework/config.php';
 
 // Load all include files
-require($cfg->readConfig('base_path') . 'inc/includes.php');
+require $cfg->getConfigEntry('framework_base_path') . 'includes.php';
 
 // Load all game classes
-require($cfg->readConfig('base_path') . 'inc/classes.php');
+require $cfg->getConfigEntry('framework_base_path') . 'classes.php';
 
 // Set default application
-FrameworkConfiguration::getInstance()->setConfigEntry('default_application', 'ship-simu');
+FrameworkConfiguration::getInstance()->setConfigEntry('default_application', 'shipsimu');
 
 // Set testing mode (no starter.php will be loaded!)
 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");
@@ -28,11 +28,11 @@ die("You need to remove this line (".__LINE__.") and implement this test!\n");
 /**
  * A test case for 
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  * @see                        http://www.phpunit.de
  *
  * This program is free software: you can redistribute it and/or modify
@@ -50,5 +50,3 @@ die("You need to remove this line (".__LINE__.") and implement this test!\n");
  */
 class Test extends PHPUnit_Framework_TestCase {
 }
-
-?>