public function testJsonSerialize()
 {
     $user = new User($this->uuid, $this->username, $this->email, $this->password);
     $expected = ['id' => (string) $this->uuid, 'username' => 'username', 'email' => '*****@*****.**'];
     $this->assertEquals($expected, $user->jsonSerialize());
 }