Esempio n. 1
0
        static async Task <int> Main(string[] args)
        {
            // use while debugging
            // TRunner.CrashHard = true;
            TRunner.AddTests <FastExprKitTest>();
            await TRunner.RunTestsAsync();

            TRunner.ReportAll();
            return(TRunner.ExitStatus);
        }
Esempio n. 2
0
        static void Main(string[] args)

        {
            if (args.Length > 0)
            {
                RunBenchmarks();
            }
            else
            {
                TRunner.CrashHard = false;
                TRunner.AddTests <IntegrationTests>();
                TRunner.RunTests();
                TRunner.ReportAll();
            }
        }
Esempio n. 3
0
 static async Task Main(string[] args)
 {
     TRunner.AddTests <UnitTests>();
     TRunner.CrashHard = true;
     await TRunner.RunTestsAsync();
 }