private void OnErrorOccured(IUnitTestException exception) { var h = TestingErrorOccured; if (h != null) { h(this, new TestingErrorOccuredEventArgs(exception)); } }
public TestingErrorOccuredEventArgs(IUnitTestException exception) { Exception = exception; }