コード例 #1
0
ファイル: TestRunner.cs プロジェクト: ynkbt/moon
 private void OnTestComplete(Test test, TestCompleteReason reason)
 {
     if (test.CompleteReason != TestCompleteReason.Timedout)
     {
         test.CompleteReason = reason;
     }
     if (TestCompleteEvent != null)
     {
         TestCompleteEvent(test, reason);
     }
 }
コード例 #2
0
ファイル: TestRunner.cs プロジェクト: dfr0/moon
		private void OnTestComplete (Test test, TestCompleteReason reason)
		{
			if (test.CompleteReason != TestCompleteReason.Timedout)
				test.CompleteReason = reason;
			if (TestCompleteEvent != null)
				TestCompleteEvent (test, reason);
		}
コード例 #3
0
ファイル: TestRun.cs プロジェクト: ynkbt/moon
 private void TestComplete(Test test, TestCompleteReason reason)
 {
     QueueTestForProcessing(test);
 }
コード例 #4
0
ファイル: TestRun.cs プロジェクト: dfr0/moon
		private void TestComplete (Test test, TestCompleteReason reason)
		{
			QueueTestForProcessing (test);
		}