コード例 #1
0
 private void OnErrorOccured(IUnitTestException exception)
 {
     var h = TestingErrorOccured;
     if (h != null)
     {
         h(this, new TestingErrorOccuredEventArgs(exception));
     }
 }
コード例 #2
0
 public TestingErrorOccuredEventArgs(IUnitTestException exception)
 {
     Exception = exception;
 }