Ejemplo n.º 1
0
        static void testSuite(string[] args)
        {
            if (args.Length < 2)
            {
                Console.Error.WriteLine("expected [origdir] [destdir] [maxfiles]");
                return;
            }
            int maxfiles = args.Length < 3 ? 0 : int.Parse(args[2]);

            TestPngSuite.testAllSuite(args[0], args[1], maxfiles);
        }
Ejemplo n.º 2
0
 static void testSingle(string file)
 {
     TestPngSuite.testSingle(file, null, null);
 }