예제 #1
0
        public void TestInitialize()
        {
            this.client = TestHelpers.CreateTaskHubClient();

            this.taskHub = TestHelpers.CreateTaskHub();

            this.taskHub.orchestrationService.CreateAsync(true).Wait();

            this.taskHubNoCompression = TestHelpers.CreateTaskHubNoCompression();
        }
예제 #2
0
 public void TestInitialize()
 {
     if (!TestContext.TestName.Contains("TestHost"))
     {
         client  = TestHelpers.CreateTaskHubClient();
         taskHub = TestHelpers.CreateTaskHub();
         taskHubNoCompression = TestHelpers.CreateTaskHubNoCompression();
         taskHub.orchestrationService.CreateAsync(true).Wait();
     }
 }