コード例 #1
0
 public void Authenticate_GoodCredentials_ExpectSucces()
 {
     ReportingService.Authenticate(ReportingService.Config.Login, ReportingService.Config.Password);
     Assert.IsNotNullOrEmpty(ReportingService.ProfileId);
 }
コード例 #2
0
 public void GetToken_ExpectSuccess()
 {
     ReportingService.Authenticate(ReportingService.Config.Login, ReportingService.Config.Password);
     ReportingService.GetToken();
     Assert.IsNotNullOrEmpty(ReportingService.ProfileId);
 }