Example #1
0
 /**
  * @testdox Allows to set the values of the session
  * @covers Auth\Entity\AuthSession::getSession
  * @covers Auth\Entity\AuthSession::setSession
  * @dataProvider provideSessionTestData
  */
 public function testSetGetSession($session, $expectedSession)
 {
     $input = $session;
     $this->target->setSession($input);
     $this->assertEquals($input, $this->target->getSession());
 }