Ejemplo n.º 1
0
 public void AuthenticationTest_SendingRequest_ReturnsTokenString(string environment)
 {
     _caller.Environment = environment;
     _caller.Authenticate();
     Assert.Multiple(() =>
     {
         Assert.IsNotEmpty(_caller.AuthToken);
         Assert.IsNotNull(_caller.AuthToken);
     });
 }