Пример #1
0
        public static void Main()
        {
            Lab06TestModule tests = new Lab06TestModule();

            tests.PrepareTestSets();

            tests.TestSets["SolutionExistenceTests"].PerformTests(false);
            tests.TestSets["SmallTests"].PerformTests(false);
            tests.TestSets["BigTests"].PerformTests(true);
        }
Пример #2
0
        static void Main(string[] args)
        {
            bool checkPath = false;

            Lab06TestModule lab06test = new Lab06TestModule(checkPath);

            lab06test.PrepareTestSets();

            foreach (var ts in lab06test.TestSets)
            {
                ts.Value.PerformTests(verbose: true, checkTimeLimit: false);
            }
        }
        public static void Main()
        {
            //Squares test = new Squares();

            //int n = 10;
            //int[] sizes = new int[] { 1 };
            //int[,] solution;

            //test.FindDisivion(n, sizes, out solution);



            Lab06TestModule tests = new Lab06TestModule();

            tests.PrepareTestSets();

            tests.TestSets["SolutionExistenceTests"].PerformTests(false);
            tests.TestSets["SmallTests"].PerformTests(false);
            tests.TestSets["BigTests"].PerformTests(true);
        }