コード例 #1
0
 public TestResultSaverService(IDbContext dbContext, ILatestTestResultService latestTestResultService,
                               ITemporaryTestResultService temporaryTestResultService, ITestFailureDurationService testFailureDurationService,
                               ITestStepService testStepService, ITestResultMapper testResultMapper)
 {
     _db = dbContext.Get();
     _latestTestResultService    = latestTestResultService;
     _temporaryTestResultService = temporaryTestResultService;
     _testFailureDurationService = testFailureDurationService;
     _testStepService            = testStepService;
     _testResultMapper           = testResultMapper;
 }
コード例 #2
0
 public ProgressRecorder(ITestExecutionRecorder testExecutionRecorder, ITestResultMapper testResultMapper)
 {
     this.testExecutionRecorder = testExecutionRecorder;
     this.testResultMapper      = testResultMapper;
 }
コード例 #3
0
 public ProgressRecorderFactory(ITestResultMapper testResultMapper)
 {
     this.testResultMapper = testResultMapper;
 }