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); }
static void testSingle(string file) { TestPngSuite.testSingle(file, null, null); }