Esempio n. 1
0
        public static void CleanUp()
        {
            if (testContext.DeallocateResourcesOnCleanup())
            {
                var step1 = new BotTestCase()
                {
                    Action        = "stop all vms",
                    ExpectedReply = "You are trying to stop the following virtual machines",
                };

                var step2 = new BotTestCase()
                {
                    Action        = "Yes",
                    ExpectedReply = "Stopping the following virtual machines",
                };

                var completionTestCase = new BotTestCase()
                {
                    ExpectedReply = $"virtual machine was stopped successfully.",
                };

                var steps = new List <BotTestCase> {
                    step1, step2
                };

                TestRunner.RunTestCases(steps, completionTestCase, 2).Wait();
            }

            if (botHelper != null)
            {
                botHelper.Dispose();
            }
        }
Esempio n. 2
0
 public static void CleanUp()
 {
     try
     {
         TestRunner.EnsureAllVmsStopped().Wait();
     }
     finally
     {
         if (botHelper != null)
         {
             botHelper.Dispose();
         }
     }
 }