示例#1
0
        static void Main(string[] args)
        {
            GridTaskBrokerTests test = new GridTaskBrokerTests();
            test.FixtureSetUp();

            // Start the host on a separate thread
            Thread t = new Thread(RunTheHost) { Name = "HostThread" };
            t.Start();

            test.Client_ExecuteTask_Test();

            HostRunning.Set();
            test.FixtureTearDown();
        }