Ejemplo n.º 1
0
 /**
  * @covers ZfcUser\Options\ModuleOptions::getAllowedLoginStates
  * @covers ZfcUser\Options\ModuleOptions::setAllowedLoginStates
  */
 public function testSetGetAllowedLoginStates()
 {
     $this->options->setAllowedLoginStates(array(2, 5, null));
     $this->assertEquals(array(2, 5, null), $this->options->getAllowedLoginStates());
 }