Exemple #1
0
 static void Main(string[] args)
 {
     /*
      * // "/framework=4.0.30319.239"
      * string[] args2;
      * if (args.Length == 1)
      *  args2 = new string[] { args[0], Assembly.GetExecutingAssembly().Location };
      * else
      *  args2 = new string[] { Assembly.GetExecutingAssembly().Location };
      * NUnit.ConsoleRunner.Runner.Main(args2);
      * */
     // for profiler
     if (args.Length == 1 && args[0] == "bench")
     {
         Console.WriteLine("start bench mark");
         var bm = new BenchMark();
         bm.EnableReport = false;
         bm.DoBenchmark();
         Console.WriteLine("finish bench mark");
     }
     else
     {
         NUnit.ConsoleRunner.Runner.Main(new string[] { Assembly.GetExecutingAssembly().Location });
     }
 }
Exemple #2
0
 static void Main(string[] args)
 {
     /*
     // "/framework=4.0.30319.239"
     string[] args2;
     if (args.Length == 1)
         args2 = new string[] { args[0], Assembly.GetExecutingAssembly().Location };
     else
         args2 = new string[] { Assembly.GetExecutingAssembly().Location };
     NUnit.ConsoleRunner.Runner.Main(args2);
      * */
     // for profiler
     if (args.Length == 1 && args[0] == "bench")
     {
         Console.WriteLine("start bench mark");
         var bm = new BenchMark();
         bm.EnableReport = false;
         bm.DoBenchmark();
         Console.WriteLine("finish bench mark");
     }
     else
         NUnit.ConsoleRunner.Runner.Main(new string[] { Assembly.GetExecutingAssembly().Location});
 }