Пример #1
0
 public GetResultsHandler(ITestRunsRepository testRunsRepository, IEventsRepository eventsRepository, IEntrantsRepository entrantsRepository)
 {
     this.testRunsRepository = testRunsRepository;
     this.eventsRepository   = eventsRepository;
     this.entrantsRepository = entrantsRepository;
     totalTimeCalculator     = new AutoTestTotalTimeCalculator();
 }
Пример #2
0
 public AddTestRunHandler(ITestRunsRepository testRunsRepository, ISignalRNotifier signalRNotifier, AutoTestContext autoTestContext)
 {
     this.testRunsRepository = testRunsRepository;
     this.signalRNotifier    = signalRNotifier;
     _autoTestContext        = autoTestContext;
 }
Пример #3
0
 public UpdateTestRunHandler(ITestRunsRepository testRunsRepository, ISignalRNotifier signalRNotifier)
 {
     this.testRunsRepository = testRunsRepository;
     this.signalRNotifier    = signalRNotifier;
 }
Пример #4
0
 public GetTestRunsHandler(ITestRunsRepository testRunsRepository)
 {
     this.testRunsRepository = testRunsRepository;
 }