コード例 #1
0
        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);
        }
コード例 #2
0
        public void InstanceTypeShowTest()
        {
            InstanceType testIT = InstanceType.show(cloudID, instanceTypeID);

            Assert.IsNotNull(testIT);
        }
コード例 #3
0
        public void InstanceTypeShowDefaultTest()
        {
            InstanceType testIT = InstanceType.show(cloudID, instanceTypeID, "default");

            Assert.IsNotNull(testIT);
        }