/**
  * Tests removing the login storage.
  *
  * @covers empire\framework\login\storage\JsonLoginStorage::remove
  */
 public function testRemove()
 {
     $this->instance->addToken(12, 'hello');
     $this->instance->remove();
     $this->assertFalse($this->instance->tokenExists(12, 'hello'));
 }