public function testReset()
 {
     $t = new SecurityToken();
     $initialValue = $t->getValue();
     $t->reset();
     $this->assertNotEquals($t->getValue(), $initialValue);
 }