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