public Exception ClassStart()
 {
     try
     {
         ObjectUnderTest.OnStart();
         return(null);
     }
     catch (Exception ex)
     {
         return(ex);
     }
 }