Exemplo n.º 1
0
 /**
  * @covers ZfcUser\Authentication\Adapter\Db::logout
  */
 public function testLogout()
 {
     $this->storage->expects($this->once())->method('clear');
     $this->db->logout($this->authEvent);
 }
Exemplo n.º 2
0
 /**
  * @covers ZfcUser\Authentication\Adapter\Db::logout
  */
 public function testLogout()
 {
     $this->storage->expects($this->once())->method('getNameSpace')->will($this->returnValue('test'));
     $this->db->logout($this->authEvent);
 }