コード例 #1
0
ファイル: TestMethodContext.cs プロジェクト: Mhburg/MUnit
 /// <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);
        }