Example #1
0
 public void UnRegisterFirstChanceExceptionTest()
 {
     Global_Accessor target = new Global_Accessor(); // TODO: Initialize to an appropriate value
    
     bool bl = false;
     try
     {
         //target.UnRegisterFirstChanceException();
     }
     catch
     {
         bl = true;
     }
     Assert.IsFalse(bl);
 }
Example #2
0
 public void RegisterOrUnRegisterEventTest()
 {
     Global_Accessor target = new Global_Accessor(); // TODO: Initialize to an appropriate value
    
     bool bl = false;
     try
     {
         //target.RegisterOrUnRegisterEvent();
     }
     catch
     {
         bl = true;
     }
     Assert.IsFalse(bl);
 }