public async Task GetRandomCharactersNotEmpty()
 {
     ITokenService tokenService = new TokenService();
     Assert.AreNotEqual(await tokenService.GetToken(), string.Empty);
 }
 public async Task GetRandomCharactersNotNull()
 {
     ITokenService tokenService = new TokenService();
     Assert.IsNotNull(await tokenService.GetToken());
 }