Exemplo n.º 1
0
 public void Assert(bool condition, string message)
 {
     if (!condition)
     {
         RealTrace.WriteLine(DateTime.Now.ToString("hh:mm:ss.fff") + " " + ctr.Name, "Assert failed: {0}", message);
     }
 }
Exemplo n.º 2
0
 public void WriteLine(string format, params object[] args)
 {
     RealTrace.WriteLine(DateTime.Now.ToString("hh:mm:ss.fff") + " " + ctr.Name, format, args);
 }
Exemplo n.º 3
0
 public void WriteLine(object value)
 {
     RealTrace.WriteLine(DateTime.Now.ToString("hh:mm:ss.fff") + " " + ctr.Name, value.ToString());
 }