Example #1
0
 public function testAddUnlockLinkToUsrId()
 {
     $app = new Application(Application::ENV_TEST);
     $this->assertNull($app->getUnlockAccountData());
     $app->addUnlockAccountData(42);
     $this->assertEquals(42, $app->getUnlockAccountData());
     $this->assertNull($app->getUnlockAccountData());
 }