@Test
public void testVMMessage() throws Exception {
String topic = "jmsmanager.test";
properties.setProperty("topic." + topic, topic);
JMSManager jmsMgr = new JMSManager(properties);
jmsMgr.listen(topic, this);
jmsMgr.send(topic, messageText);
checkMessage(topic, DestinationType.Topic, messageText);
jmsMgr.close();
}