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; }
public ProgressRecorder(ITestExecutionRecorder testExecutionRecorder, ITestResultMapper testResultMapper) { this.testExecutionRecorder = testExecutionRecorder; this.testResultMapper = testResultMapper; }
public ProgressRecorderFactory(ITestResultMapper testResultMapper) { this.testResultMapper = testResultMapper; }