コード例 #1
0
ファイル: Assertions.cs プロジェクト: mandrek44/Stubbornium
 public static void AreEqual(bool expected, bool actual, string message = null)
 {
     if (expected != actual)
     {
         throw AssertionException.EqualException(expected.ToString(), actual.ToString(), message ?? string.Empty);
     }
 }