Пример #1
0
        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);
        }
Пример #2
0
 /// <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;
 }