public void instanceTypeCloud() { InstanceType testIT = InstanceType.show(cloudID, instanceTypeID); Assert.IsNotNull(testIT); Cloud c = testIT.cloud; Assert.IsNotNull(c); Assert.IsTrue(c.name.Length > 0); }
public void InstanceTypeShowTest() { InstanceType testIT = InstanceType.show(cloudID, instanceTypeID); Assert.IsNotNull(testIT); }
public void InstanceTypeShowDefaultTest() { InstanceType testIT = InstanceType.show(cloudID, instanceTypeID, "default"); Assert.IsNotNull(testIT); }