> + > + HashMap<String, String> tags = new HashMap<String, String>(); > + tags.put("tagname1", "tagvalue1"); > + > + ResourceGroup resourceGroup = > api.getResourceGroupApi(subscriptionid).create("jcloudstest", "West US", > tags); > + > + assertEquals(resourceGroup.name(), "jcloudstest"); > + assertEquals(resourceGroup.location(), "westus"); > + assertEquals(resourceGroup.tags().size(), 1); > + assertTrue(resourceGroup.id().contains("jcloudstest")); > + > + assertEquals(server.getRequestCount(), 1); > + assertSent(server, "PUT", requestUrl + "/jcloudstest" + version, > String.format("{\"location\":\"%s\", \"tags\":{\"tagname1\":\"tagvalue1\"}}", > "West US")); > + } > + > + public void testGetResourceGroup() throws InterruptedException {
@andreaturli The link provided above is similar to `AzureComputeErrorHandler`. Do you have an example for `ResourceGroupParseTest`? --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/250/files/f7cc1b437f11378e105bba552e3cfee9d7491872#r58321101