/**
  * @covers ZfcUser\Form\ChangePassword::getAuthenticationOptions
  * @covers ZfcUser\Form\ChangePassword::setAuthenticationOptions
  */
 public function testSetGetAuthenticationOptions()
 {
     $options = $this->getMock('ZfcUser\\Options\\AuthenticationOptionsInterface');
     $form = new Form(null, $options);
     $this->assertSame($options, $form->getAuthenticationOptions());
 }