]> git.mxchange.org Git - core.git/blobdiff - tests/RequestTest.php
Continued:
[core.git] / tests / RequestTest.php
index eae022177912016ed8e13d0f8c27aed5915f01fd..a32dfe783159d85fc9fd776afd6632cba9160ac3 100644 (file)
@@ -5,13 +5,13 @@ 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('base_path') . 'framework/includes.php');
 
 // Load all game classes
-require($cfg->getConfigEntry('base_path') . 'inc/classes.php');
+require($cfg->getConfigEntry('base_path') . 'framework/classes.php');
 
 // Set default application
 FrameworkConfiguration::getInstance()->setConfigEntry('default_application', 'shipsimu');
@@ -57,7 +57,7 @@ class RequestTest extends PHPUnit_Framework_TestCase {
         */
        public function testMissingRequestElement () {
                // Get a request instance
-               $requestInstance = HttpRequest::createHttpRequest();
+               $requestInstance = HtmlRequest::createHtmlRequest();
 
                // Get the element
                $nonExist = $requestInstance->getRequestElement('never_there');
@@ -79,18 +79,18 @@ class RequestTest extends PHPUnit_Framework_TestCase {
         */
        public function testFakeRequestElement () {
                // Fake the request here
-               $_REQUEST = array('test_key' => "test_value");
+               $_REQUEST = array('test_key' => 'test_value');
 
                // Again get an instance
-               $requestInstance = HttpRequest::createHttpRequest();
+               $requestInstance = HtmlRequest::createHtmlRequest();
 
                // Get the element
                $testValue = $requestInstance->getRequestElement('test_key');
 
                // Is it the same?
-               if ($testValue !== "test_value") {
+               if ($testValue !== 'test_value') {
                        // Something went wrong
-                       $this->fail(sprintf("[%s] Unexpected value %s (%s) from test key received.",
+                       $this->fail(sprintf('[%s] Unexpected value %s (%s) from test key received.',
                                $requestInstance->__toString(),
                                $testValue,
                                gettype($testValue)