> + return api.getTargetPoolApiForProject(userProject.get());
> + }
> +
> + @Test(groups = "live")
> + public void testInsertTargetPool() {
> +
> assertRegionOperationDoneSucessfully(api().createInRegion(DEFAULT_REGION_NAME,
> TARGETPOOL_NAME), TIME_WAIT);
> + }
> +
> + @Test(groups = "live", dependsOnMethods = "testInsertTargetPool")
> + public void testGetTargetPool() {
> + TargetPool targetPool = api().getInRegion(DEFAULT_REGION_NAME,
> TARGETPOOL_NAME);
> + assertNotNull(targetPool);
> + assertEquals(targetPool.getName(), TARGETPOOL_NAME);
> + }
> +
> + @Test(groups = "live", dependsOnMethods = "testGetTargetPool")
Does this actually depend on `get` or on `insert`? Could `testGet` and
`testList` be run in parallel?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r18015776