Package org.jclouds.googlecomputeengine.domain

Examples of org.jclouds.googlecomputeengine.domain.Address


      assertRegionOperationDoneSucessfully(api().createInRegion(DEFAULT_REGION_NAME, ADDRESS_NAME), TIME_WAIT);
   }

   @Test(groups = "live", dependsOnMethods = "testInsertAddress")
   public void testGetAddress() {
      Address address = api().getInRegion(DEFAULT_REGION_NAME, ADDRESS_NAME);
      assertNotNull(address);
      assertEquals(address.getName(), ADDRESS_NAME);
   }
View Full Code Here


      assertRegionOperationDoneSucessfully(api().createInRegion(DEFAULT_REGION_NAME, ADDRESS_NAME), TIME_WAIT);
   }

   @Test(groups = "live", dependsOnMethods = "testInsertAddress")
   public void testGetAddress() {
      Address address = api().getInRegion(DEFAULT_REGION_NAME, ADDRESS_NAME);
      assertNotNull(address);
      assertEquals(address.getName(), ADDRESS_NAME);
   }
View Full Code Here

TOP

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

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.