/**
  * @depends testEncode
  * @expectedException Komputerwiz\Security\Token\SecureToken\TokenException
  */
 public function testDecodeExpired($token)
 {
     sleep(2);
     $this->token->decode($token);
 }
 /**
  * @depends testEncode
  * @expectedException Komputerwiz\Security\Token\SecureToken\TokenException
  */
 public function testDecodeTampering($token)
 {
     $this->token->decode($token . 'tampering');
 }