Ejemplo n.º 1
0
		protected void OnTestFinished(object source, TestFinishedEventArgs e)
		{
			if (TestFinished != null) {
				TestResult testResult = CreateTestResultForTestFramework(e.Result);
				TestFinished(source, new TestFinishedEventArgs(testResult));
			}
		}
Ejemplo n.º 2
0
 protected void OnTestFinished(object source, TestFinishedEventArgs e)
 {
     if (TestFinished != null)
     {
         TestResult testResult = CreateTestResultForTestFramework(e.Result);
         TestFinished(source, new TestFinishedEventArgs(testResult));
     }
 }
Ejemplo n.º 3
0
		protected void OnTestFinished(object source, TestFinishedEventArgs e)
		{
			if (TestFinished != null) {
				TestResult testResult = CreateTestResultForTestFramework(e.Result);
				TestFinished(source, new TestFinishedEventArgs(testResult));
			}
			if (!double.IsInfinity(progressPerTest))
				progress.Report(progressPerTest * Interlocked.Increment(ref testsFinished));
		}
Ejemplo n.º 4
0
 protected void OnTestFinished(object source, TestFinishedEventArgs e)
 {
     if (TestFinished != null)
     {
         TestResult testResult = CreateTestResultForTestFramework(e.Result);
         TestFinished(source, new TestFinishedEventArgs(testResult));
     }
     if (!double.IsInfinity(progressPerTest))
     {
         progress.Report(progressPerTest * Interlocked.Increment(ref testsFinished));
     }
 }
Ejemplo n.º 5
0
 void TestFinished(object source, TestFinishedEventArgs e)
 {
     context.Workbench.SafeThreadAsyncCall(ShowResult, e.Result);
 }
Ejemplo n.º 6
0
		protected virtual void OnTestFinished(TestFinishedEventArgs e)
		{
			if (TestFinished != null) {
				TestFinished(this, e);
			}
		}
Ejemplo n.º 7
0
 void TestFinished(object source, TestFinishedEventArgs e)
 {
     WorkbenchSingleton.SafeThreadAsyncCall(ShowResult, e.Result);
 }
Ejemplo n.º 8
0
		void TestFinished(object source, TestFinishedEventArgs e)
		{
			context.Workbench.SafeThreadAsyncCall(ShowResult, e.Result);
		}
Ejemplo n.º 9
0
		void OnTestFinished(TestFinishedEventArgs e)
		{
			if (TestFinished != null) {
				TestFinished(this, e);
			}
		}
Ejemplo n.º 10
0
		void TestFinished(object source, TestFinishedEventArgs e)
		{
			WorkbenchSingleton.SafeThreadAsyncCall(ShowResult, e.Result);
		}