Package org.jclouds.googlecomputeengine.domain

Examples of org.jclouds.googlecomputeengine.domain.MachineType


   }


   @Test(groups = "live", dependsOnMethods = "testListMachineType")
   public void testGetMachineType() {
      MachineType machineType = api().get(this.machineType.getName());
      assertNotNull(machineType);
      assertMachineTypeEquals(machineType, this.machineType);
   }
View Full Code Here


   }


   @Test(groups = "live", dependsOnMethods = "testListMachineType")
   public void testGetMachineType() {
      MachineType machineType = api().getInZone(DEFAULT_ZONE_NAME, this.machineType.getName());
      assertNotNull(machineType);
      assertMachineTypeEquals(machineType, this.machineType);
   }
View Full Code Here

   }


   @Test(groups = "live", dependsOnMethods = "testListMachineType")
   public void testGetMachineType() {
      MachineType machineType = api().getInZone(DEFAULT_ZONE_NAME, this.machineType.getName());
      assertNotNull(machineType);
      assertMachineTypeEquals(machineType, this.machineType);
   }
View Full Code Here

TOP

Related Classes of org.jclouds.googlecomputeengine.domain.MachineType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.