Esempio n. 1
0
 public void Authenticate_GoodCredentials_ExpectSucces()
 {
     ReportingService.Authenticate(ReportingService.Config.Login, ReportingService.Config.Password);
     Assert.IsNotNullOrEmpty(ReportingService.ProfileId);
 }
Esempio n. 2
0
 public void GetToken_ExpectSuccess()
 {
     ReportingService.Authenticate(ReportingService.Config.Login, ReportingService.Config.Password);
     ReportingService.GetToken();
     Assert.IsNotNullOrEmpty(ReportingService.ProfileId);
 }