euromark 11 years ago
parent
commit
945cbd2fa7
1 changed files with 0 additions and 19 deletions
  1. 0 19
      tests/TestCase/Controller/Component/SessionComponentTest.php

+ 0 - 19
tests/TestCase/Controller/Component/SessionComponentTest.php

@@ -127,25 +127,6 @@ class SessionComponentTest extends TestCase {
 	}
 
 /**
- * testSessionFlash method
- *
- * @return void
- */
-	public function testSessionFlash() {
-		$Session = new SessionComponent($this->ComponentRegistry);
-
-		$this->assertNull($Session->read('Flash.flash'));
-
-		$Session->setFlash('This is a test message');
-		$this->assertEquals(array(
-				'message' => 'This is a test message',
-				'element' => null,
-				'params' => array(),
-				'key' => 'flash'
-			), $Session->read('Flash.flash'));
-	}
-
-/**
  * testSessionId method
  *
  * @return void