public function testShouldVerifyValidPassword()
 {
     $user = new User($this->uuid, $this->username, $this->email, $this->password);
     $this->assertTrue($user->verifyPassword('z^kCXMO/9fIr=x3NI:EQN^|g!HqhAJIU'));
     $this->assertTrue($user->verifyPassword($this->password));
 }