ObjectName on = new ObjectName("jboss.messaging.destination:service=Queue,name=JMSTestQueue");
Integer mc = (Integer)ServerManagement.getAttribute(on, "MessageCount");
assertEquals(1, mc.intValue());
m.acknowledge();
// make sure there's nothing in queue anymore
mc = (Integer)ServerManagement.getAttribute(on, "MessageCount");
assertEquals(0, mc.intValue());