>  
>           assertTrue(success);
>        }
>     }
>  
>     @Test(dependsOnMethods = { "setMetadata" })
> +   public void listManyPagesOfQueuesWithDetails() throws Exception {
> +      for (String zoneId : api.getConfiguredZones()) {
> +         QueueApi queueApi = api.getQueueApiForZone(zoneId);
> +         List<Queue> queues = queueApi.list(true).concat().toList();
> +
> +         assertEquals(queues.size(), 12);
> +
> +         for (Queue queue: queues) {
> +            assertNotNull(queue.getName());
> +            assertTrue(queue.getMetadata().isPresent());

Add messages?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/56/files#r7881721

Reply via email to