Esempio n. 1
0
 /// <summary>
 /// Asserts that two objects are equal.  If the objects are not equal the assertions fails with the
 /// given message.
 /// </summary>
 public static void AssertEquals(string message, object expectedObject, object actualObject)
 {
     try
     {
         _testFramework.AssertEquals(message, expectedObject, actualObject);
     }
     catch (Exception ex)
     {
         throw new AssertionException(ex.Message);
     }
 }