コード例 #1
0
ファイル: Program.cs プロジェクト: sybilr/MultiNode
        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();
        }