public void TestHypervisorServiceGetVirtualMachines()
        {
            var webHypervisorService = new WebHypervisorService(_validConnectionConfig);

            string[] virtualMachineNames = webHypervisorService.GetVirtualMachines();

            Assert.IsTrue(virtualMachineNames.Length > 0);
        }
        public void TestHypervisorServiceGetDrives()
        {
            const string virtualMachine       = "VirtualMachine";
            var          webHypervisorService = new WebHypervisorService(_validConnectionConfig);

            DriveData[] drives = webHypervisorService.GetDrives(virtualMachine);

            Assert.IsTrue(drives.Length > 0);
        }