コード例 #1
0
 public DeterminationNoticeTest(string projectUrl, string userid, string password, string expected)
 {
     this.projectUrl = projectUrl;
     this.userid     = userid;
     this.password   = password;
     this.expected   = expected;
     UIActions       = new UserInitialActions();
     CSActions       = new ClaimantSearchActions();
     CDActions       = new ClaimantDetailsActions();
     ReActions       = new ReviewActions();
     UtilActions     = new UtilitiesActions();
     DDBActions      = new DeterminationDBActions(new DatabaseConnectivity(), new DatabaseModel());
 }
コード例 #2
0
 public SanityTestCases(string projectUrl, string userid, string password, string expected)
 {
     this.projectUrl = projectUrl;
     this.userid     = userid;
     this.password   = password;
     this.expected   = expected;
     UIActions       = new UserInitialActions();
     CSActions       = new ClaimantSearchActions();
     CDActions       = new ClaimantDetailsActions();
     RActions        = new ReportActions();
     ReActions       = new ReviewActions();
     UtilActions     = new UtilitiesActions();
     validation      = new Validation();
 }
コード例 #3
0
 public ManualReviewTestPL(string projectUrl, string userid, string password, string reviewType, string claimantId, string reviewQueueType)
 {
     this.projectUrl      = projectUrl;
     this.userid          = userid;
     this.password        = password;
     this.reviewType      = reviewType;
     this.claimantId      = claimantId;
     this.reviewQueueType = reviewQueueType;
     UIActions            = new UserInitialActions();
     ReActions            = new ReviewActions();
     RqActions            = new ReviewQueueActions();
     RqPLActions          = new ReviewDetailsPLActions();
     RqDBActions          = new ReviewQueueDBActions(new DatabaseConnectivity());
     Validation           = new Validation();
     acreObj = new Acres();
 }
コード例 #4
0
 public async Task Create(ReviewActions reviewAction)
 {
     await _context.ReviewActions.AddAsync(reviewAction);
 }