コード例 #1
0
ファイル: TestSuite.cs プロジェクト: lailongwei/llbc
        static void Main(string[] args)
        {
            LibIniter.Init(Assembly.GetExecutingAssembly());

            ITestCase testCase = null;
            // Common testcases:
            testCase = new TestCase_Com_LibConfig();
            // testCase = new TestCase_Com_SafeConsole();

            // Core testcases.
            // testCase = new TestCase_Core_Log_Logger();
            // testCase = new TestCase_Core_Config_Ini();

            // Communication testcases:
            // testCase = new TestCase_Comm_Timer();
            // testCase = new TestCase_Comm_Service();

            testCase.Run(args);

            LibIniter.Destroy();
        }
コード例 #2
0
ファイル: TestSuite.cs プロジェクト: zhouyanlt/llbc
        static void Main(string[] args)
        {
            LibIniter.Init(Assembly.GetExecutingAssembly());

            ITestCase testCase = null;

            // Common testcases:
            testCase = new TestCase_Com_LibConfig();
            // testCase = new TestCase_Com_SafeConsole();

            // Core testcases.
            // testCase = new TestCase_Core_Log_Logger();
            // testCase = new TestCase_Core_Config_Ini();

            // Communication testcases:
            // testCase = new TestCase_Comm_Timer();
            // testCase = new TestCase_Comm_Service();

            testCase.Run(args);

            LibIniter.Destroy();
        }