private static void Main()
        {
            ConsoleMio.PrintHeading("Extension Methods Tests");

            ConsoleMio.WriteLine("What would you like to test: ", Info);
            var menu = ConsoleMio.CreateMenu(new[]
            {
                nameof(Enumerable_Tests),
                nameof(Student_Tests),
                nameof(StringBuilder_Test),
                nameof(StartStopTimer),
                nameof(Quit)
            });

            while (true)
            {
                Execute(menu, typeof(StartTests));
            }
        }