コード例 #1
0
ファイル: Program.cs プロジェクト: num0005/H2PC_TagExtraction
        public static void TestThreadedMethod(TestContext tc, WaitCallback method,
                                              BlamVersion game, string dir, Blam.DatumIndex Datum, params string[] map_names)
        {
            var args = TestMethodBuildArgs(tc, game, dir, Datum, map_names);

            TestLibrary.TestMethodThreaded(method, args.ToArray());
        }
コード例 #2
0
        public static void TestMethodSerial(TestContext tc, WaitCallback method,
                                            BlamVersion game, string dir, params string[] map_names)
        {
            var args = TestMethodBuildArgs(tc, game, dir, map_names);

            TestLibrary.TestMethodSerial(method, args.ToArray());
        }
コード例 #3
0
        public static void TestThreadedMethod(TestContext tc, WaitCallback method,
                                              BlamVersion game, string dir, Blam.DatumIndex Datum, bool Recursive, bool OutputDB, bool Overrite, string Ext_Dir, params string[] map_names)
        {
            var args = TestMethodBuildArgs(tc, game, dir, Datum, Recursive, OutputDB, Overrite, Ext_Dir, map_names);

            TestLibrary.TestMethodThreaded(method, args.ToArray());
        }