> +      }
> +   }
> +
> +   @Test(dependsOnMethods = { "listManyPagesOfQueues" })
> +   public void listManyPagesOfQueuesManually() throws Exception {
> +      for (String zoneId : api.getConfiguredZones()) {
> +         QueueApi queueApi = api.getQueueApiForZone(zoneId);
> +
> +         Queues queues = queueApi.list(limit(6));
> +
> +         while(queues.nextMarker().isPresent()) {
> +            assertEquals(queues.size(), 6);
> +
> +            for (Queue queue: queues) {
> +               assertNotNull(queue.getName());
> +               assertFalse(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#r7881719

Reply via email to