public void LoadbalancerDelete()
        {
            Configure();
            var resp = lbApi.Delete(datacenter.Id, lb.Id);

            resp = dcApi.Delete(datacenter.Id);
        }
示例#2
0
        //  [TestMethod]
        public void NicDelete()
        {
            Configure();
            var resp = nicApi.Delete(datacenter.Id, server.Id, nic.Id);

            resp = dcApi.Delete(datacenter.Id);
            Assert.IsNull(resp);
        }
        public void SnapshotDelete()
        {
            Configure();
            var resp = snapshotApi.Delete(snapshot.Id);

            resp = dcApi.Delete(datacenter.Id);
            Assert.IsNull(resp);
        }
示例#4
0
        public void FirewallDelete()
        {
            Configure();
            var resp = fwApi.Delete(datacenter.Id, server.Id, nic.Id, fw.Id);

            Assert.IsNull(resp);

            resp = dcApi.Delete(datacenter.Id);

            Assert.IsNull(resp);
        }