X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2FRegistryTest.php;h=4807b416ae7b13417939e241e3aee40e3abd2266;hb=332fb032113c748fe046782174cb09aceb4441bf;hp=ddc516f50529cd4b702d246eb2bbd02f493d5f7d;hpb=361e6320e50a8bb1a3ccb675388b8042361669ae;p=core.git diff --git a/tests/RegistryTest.php b/tests/RegistryTest.php index ddc516f5..4807b416 100644 --- a/tests/RegistryTest.php +++ b/tests/RegistryTest.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->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"); /** * A test case for the registry * - * @author Roland Haeder + * @author Roland Haeder * @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 @@ -58,7 +58,7 @@ class RegistryTest extends PHPUnit_Framework_TestCase { $registryInstance = Registry::getRegistry(); // Create a User instance - $userInstance = Member::createMemberByEmail("webmaster@ship-simu.org"); + $userInstance = Member::createMemberByEmail("webmaster@shipsimu.org"); // Now store the instance in the registry $registryInstance->addInstance('user', $userInstance); @@ -90,5 +90,3 @@ class RegistryTest extends PHPUnit_Framework_TestCase { } } } - -?>