@Test(dependsOnMethods = {"listManyPagesOfQueuesWithDetails"})
  public void getMetadata() throws Exception {
    for (String zoneId : zones) {
      QueueApi queueApi = api.getQueueApiForZoneAndClient(zoneId, CLIENT_ID);
      Map<String, String> metadata = queueApi.getMetadata("jclouds-test-1");

      assertEquals(metadata.get("key1"), "value1");
    }
  }