> + }
> +
> + private void createResourceGroup(String name) {
> + HashMap<String, String> tags = new HashMap<String, String>();
> +
> + final ResourceGroup resourceGroup =
> api.getResourceGroupApi(getSubscriptionId()).create(
> + name, LOCATION, tags);
> + }
> +
> + private void deleteResourceGroup(String name) {
> + api.getResourceGroupApi(getSubscriptionId()).delete(name);
> + }
> +
> + @BeforeClass
> + @Override
> + public void setup() {
I think this is not needed, remove it please.
---
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#r57514487