> + assertEquals(response.getName(), BUCKET_NAME_WITHOPTIONS);
> + assertNotNull(response.getAcl());
> + }
> +
> + @Test(groups = "live", dependsOnMethods = "testCreateBucket")
> + public void testGetBucket() {
> + Bucket response = api().getBuckets(BUCKET_NAME);
> +
> + assertNotNull(response);
> + assertEquals(response.getName(), BUCKET_NAME);
> + assertEquals(response.getKind(), Kind.BUCKET);
> + }
> +
> + @Test(groups = "live", dependsOnMethods = "testUpdateBucketWithOptions")
> + public void testGetBucketWithOptions() {
> + GetBucketOptions options = new
> GetBucketOptions().ifMetagenerationMatch(metageneration);
Use the builder?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14533517