Ejemplo n.º 1
0
        private void OnUnhandledExceptionInTest(TestSummary e)
        {
            EventHandler <TestSummaryEventArgs> handler = UnhandledExceptionInTest;

            if (handler != null)
            {
                handler(this, new TestSummaryEventArgs(e));
            }
        }
Ejemplo n.º 2
0
        private void OnTestFinished(TestSummary e)
        {
            EventHandler <TestSummaryEventArgs> handler = TestFinished;

            if (handler != null)
            {
                handler(this, new TestSummaryEventArgs(e));
            }
        }
Ejemplo n.º 3
0
 public TestSummaryEventArgs(TestSummary summary)
 {
     Summary = summary;
 }