예제 #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;
     }
 }