예제 #1
0
        private static void Main(string[] args)
        {
            Console.ForegroundColor = ConsoleColor.White;
            Console.WriteLine("Welcome to the Monotonic Sort tester");
            Console.WriteLine($"(*) This tester tests the MonotonicSort performance (Elements of type: '{typeof(moObject).Name}').");
            Console.WriteLine("(*) This tester sorts the input array in a ascending order.");
            Console.WriteLine();

            SettingsLoader         loader   = new SettingsLoader();
            ComparisonTestSettings settings = loader.LoadComparisonSettings();

            TestRunner runner = new TestRunner();

            runner.RunComparison(settings);

            Console.WriteLine("Done running. Press any key to exit.");
            Console.ReadKey();
        }