private static void TestSetupFixtureHelper_OnTestException(TestExceptionEventArgs args)
 {
     if (args != null)
     {
         Assert.Fail(args.Message);
     }
 }
 private static void TestSetupFixtureHelper_OnTestException(TestExceptionEventArgs args)
 {
     if (args != null)
     {
         Assert.Fail(args.Message);
     }
 }
 private static void TestResultLogger_OnTestException(TestExceptionEventArgs args)
 {
     if (args != null)
     {
         if (OnTestException != null)
         {
             OnTestException(args);
         }
     }
 }
 private static void TestResultLogger_OnTestException(TestExceptionEventArgs args)
 {
     if (args != null)
     {
         if (OnTestException != null)
         {
             OnTestException(args);
         }
     }
 }