X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=tests%2FConfigTest.php;h=127c7a29b8f52c2d3835d8f903091e1f24858990;hb=6acaeb0b08448f701ca13f50aec3ee89ba6ab948;hp=30d45ff5f1d67ecb890d1635854bd2bd8d693f7d;hpb=b9c18d6c24e3be4393bf41005aa4e428a0ea3218;p=core.git diff --git a/tests/ConfigTest.php b/tests/ConfigTest.php index 30d45ff5..127c7a29 100644 --- a/tests/ConfigTest.php +++ b/tests/ConfigTest.php @@ -5,33 +5,33 @@ 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->getConfigEntry('base_path') . 'inc/includes.php'); +require $cfg->getConfigEntry('framework_base_path') . 'includes.php'; // Load all game classes -require($cfg->getConfigEntry('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('PHPUnit/Framework.php'); +require 'PHPUnit/Framework.php'; print (basename(__FILE__).": Init completed.\n\n"); /** * A test case for the configuration sub system * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 * @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