Esempio n. 1
0
        static void Main(string[] args)
        {
            TestHarness            th_test   = new TestHarness();
            XDocument              xdoc_test = new XDocument();
            BlockingQueue <string> q_test    = new BlockingQueue <string>();

            th_test.processMessages();
            th_test.createChildAppDomain("CHILD_Domain", xdoc_test);
        }
Esempio n. 2
0
        //----<startTesting function >---------------------------------------

        /*
         *   This function strats the process of testing by entering
         *   into the TestHarness Package
         */
        bool stratTesting(TestHarness th)
        {
            Console.WriteLine("Entering Test Harness for processing...");
            th.processMessages();
            return(true);
        }