X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=tests%2FConfigTest.php;h=888bbdf8daaa086f933e0dac10d5c596b539f141;hp=7c70e61b7987f4a426f35c0a0d7cff1584bdfda3;hb=d73560a7ae364cce1365cc412c252ea60e33bf09;hpb=c6d73b0e3246efc824cb98338d4be7ee5bc9f308 diff --git a/tests/ConfigTest.php b/tests/ConfigTest.php index 7c70e61b..888bbdf8 100644 --- a/tests/ConfigTest.php +++ b/tests/ConfigTest.php @@ -20,7 +20,7 @@ FrameworkConfiguration::getInstance()->setConfigEntry('default_application', 'sh define('TEST_MODE', true); // Load the PHPUnit framework -require_once('PHPUnit/Framework.php'); +require('PHPUnit/Framework.php'); print (basename(__FILE__).": Init completed.\n\n"); @@ -29,7 +29,7 @@ print (basename(__FILE__).": Init completed.\n\n"); * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 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 * @see http://www.phpunit.de @@ -58,11 +58,8 @@ class ConfigTest extends PHPUnit_Framework_TestCase { // Now try the test $testPassed = false; try { - // Get a configuration instance - $cfg = FrameworkConfiguration::getInstance(); - // Now find a configuration variable that does not exist - $dummy = $cfg->readConfig('does_not_exist'); + $dummy = FrameworkConfiguration::getInstance()->readConfig('does_not_exist'); } catch (ConfigEntryNotFoundException $expected) { // This exception was expected, so it is fine $testPassed = true; @@ -87,11 +84,8 @@ class ConfigTest extends PHPUnit_Framework_TestCase { // Now try the test $testPassed = false; try { - // Get a configuration instance - $cfg = FrameworkConfiguration::getInstance(); - // Try to read an empty configuration variable - $dummy = $cfg->readConfig(""); + $dummy = FrameworkConfiguration::getInstance()->readConfig(''); } catch (ConfigEntryIsEmptyException $expected) { // This exception was expected, so it is fine $testPassed = true; @@ -116,11 +110,8 @@ class ConfigTest extends PHPUnit_Framework_TestCase { // Now try the test $testPassed = false; try { - // Get a configuration instance - $cfg = FrameworkConfiguration::getInstance(); - // Try to read an empty configuration variable - $cfg->setConfigEntry("", 'will_never_be_set'); + FrameworkConfiguration::getInstance()->setConfigEntry('', 'will_never_be_set'); } catch (ConfigEntryIsEmptyException $expected) { // This exception was expected, so it is fine $testPassed = true; @@ -144,14 +135,11 @@ class ConfigTest extends PHPUnit_Framework_TestCase { // Try it here $value = "This is a test value"; try { - // Get a configuration instance - $cfg = FrameworkConfiguration::getInstance(); - // Try to read an empty configuration variable - $cfg->setConfigEntry('test_key', "{$value}"); + FrameworkConfiguration::getInstance()->setConfigEntry('test_key', "{$value}"); // Read the config entry we have just written - $readValue = $cfg->readConfig('test_key'); + $readValue = FrameworkConfiguration::getInstance()->readConfig('test_key'); // Now test the values $this->assertEquals($value, $readValue);