Example #1
0
 /**
  * @testdox Allows to set the name of the session
  * @covers Auth\Entity\AuthSession::getName
  * @covers Auth\Entity\AuthSession::setName
  */
 public function testSetGetName()
 {
     $input = 'YawikSession';
     $this->target->setName($input);
     $this->assertEquals($input, $this->target->getName());
 }