public void Init() { agents = new AgentsCollection(new ConsoleLog()); tests = new TestUnitsCollection(); requests = new RequestsStorage(new ServerConfiguration {PingIntervalInMiliseconds = 10000}, new ConsoleLog()); scheduler = new TestsScheduler(agents, tests, requests); }
/// <summary> /// Initializes a new instance of the <see cref="TestReprocessor"/> class. /// </summary> /// <param name="collection">The collection.</param> /// <param name="log">The log.</param> /// <param name="requests">The requests.</param> public TestReprocessor(ITestUnitsCollection collection, ILog log, RequestsStorage requests) { this.collection = collection; this.log = log; this.requests = requests; }