@Test
public void testClear() throws Exception {
IQueue q = getQueue();
q.offer("item1");
q.offer("item2");
q.offer("item3");
final SimpleClient client = getClient();
client.send(new ClearRequest(queueName));
Object result = client.receive();
assertTrue((Boolean) result);