예제 #1
0
 /// <inheritdoc/>
 public virtual void SetActive(ITestCycleGraph testCycles)
 {
     this.IsActive = true;
     this.ParentCycle.SetTestCycleActive(testCycles);
 }
예제 #2
0
        private void DiscoverTests(WireMessage message)
        {
            ITestCycleGraph tests = _testEngine.DiscoverTests(message.Entity as IEnumerable <string>);

            this.Send(new WireMessage(WireMessageTypes.Telemetry, CommandType.DiscoverTests, tests.TestContextLookup.Values.ToList()), message.SessionID);
        }