> +package org.jclouds.openstack.marconi.v1.features;
> +
> +import org.jclouds.openstack.marconi.v1.internal.BaseMarconiApiLiveTest;
> +import org.testng.annotations.Test;
> +
> +import static org.testng.Assert.assertTrue;
> +
> +@Test(groups = "live", testName = "QueueApiLiveTest")
> +public class QueueApiLiveTest extends BaseMarconiApiLiveTest {
> +
> +   public void create() throws Exception {
> +      for (String zoneId : api.getConfiguredZones()) {
> +         QueueApi queueApi = api.getQueueApiForZone(zoneId);
> +         boolean success = queueApi.create("jclouds-test");
> +
> +         assertTrue(success);

I don't see a real need for messages on these asserts. I think the code says it 
well enough here.

Many of the Queue API calls just return a 204 No Content so there's really 
nothing else to check.

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

Reply via email to