Example #1
0
 public function testRemovePersistendCookie()
 {
     $_COOKIE[Session::COOKIE_NAME] = 'cookieValue';
     $this->session->removePersistentCookie();
     $this->assertArrayNotHasKey(Session::COOKIE_NAME, $_COOKIE);
 }