> + assertEquals(server.getRequestCount(), 1);
> + assertSent(server, "GET", requestUrl + version);
> + }
> +
> + public void testListResourceGroupsWithOptions() throws
> InterruptedException {
> + server.enqueue(jsonResponse("/resourcegroups.json"));
> +
> + List<ResourceGroup> resourceGroups =
> api.getResourceGroupApi(subscriptionid).list();
> +
> + assertEquals(size(resourceGroups), 2);
> + assertEquals(server.getRequestCount(), 1);
> +
> + assertSent(server, "GET", requestUrl + version);
> + }
> +
> + public void testListResourceGroupsWithOptionsReturns404() throws
> InterruptedException {
This test is duplicate (until there is a method that allows option parameters
to the list method).
---
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#r57579531