예제 #1
0
 public static string ProduceErrorMsg(string sMsg)
 {
     return(ConventionSupport.ErrorMsgPrefix +
            ConventionSupport.GetCurrentMethodName( ) +
            sMsg +
            ConventionSupport.NewLine);
 }
예제 #2
0
 public static bool IsFalse(bool bConditon)
 {
     if ((!(bConditon != false)))
     {
         Debug.WriteLine("AssertFailed");
         ConventionSupport.GetCurrentMethodName( );
     }
     return(bConditon);
 }
예제 #3
0
            public static bool AreEqual(bool bConditon)
            {
                if (bConditon != true)
                {
                    Debug.WriteLine("AssertFailed");
                    ConventionSupport.GetCurrentMethodName( );
                }

                return(bConditon);
            }
예제 #4
0
 private static void ErrorDump()
 {
     ConventionSupport.GetCurrentMethodName( );
 }