Example #1
0
 public function testCanClearSession()
 {
     $sessionData = [Session::UNIT_TEST_KEY => 'value'];
     $session = new Session($sessionData);
     $session->clear();
     $this->assertNull($session->getUnitTestValue());
     $this->assertEmpty($sessionData);
 }