示例#1
0
 public static int Main(string[] argv)
 {
     try
     {
         var test1 = new SysTests();
         test1.Run();
         return(0);
     }
     catch (Exception ex)
     {
         Console.Error.WriteLine("FAIL: " + ex.Message);
         return(1);
     }
 }
示例#2
0
文件: Program.cs 项目: vigoo/bari
 public static int Main(string[] argv)
 {
     try
     {
         var test1 = new SysTests();
         test1.Run();
         return 0;
     }
     catch (Exception ex)
     {
         Console.Error.WriteLine("FAIL: " + ex.Message);
         return 1;
     }
 }