Esempio n. 1
0
 /// <summary>
 /// Asserts that an object is null.  If the object is not null, the assertion fails.
 /// </summary>
 public static void AssertNull(object assertion)
 {
     try
     {
         _testFramework.AssertNull(assertion);
     }
     catch (Exception ex)
     {
         throw new AssertionException(ex.Message);
     }
 }