From: Roland Haeder Date: Mon, 23 Mar 2015 02:20:40 +0000 (+0100) Subject: Updated a little unmaintained test cases (they need to be run sooner or later). X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=727a23a2a03d07d4447364cf150473d6fbe03186;p=core.git Updated a little unmaintained test cases (they need to be run sooner or later). Signed-off-by: Roland Häder --- diff --git a/tests/RequestTest.php b/tests/RequestTest.php index eae02217..f7c4f450 100644 --- a/tests/RequestTest.php +++ b/tests/RequestTest.php @@ -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)