long unmatchingValue = matchingValue + 1;
String filter = "key = " + matchingValue;
String otherQueueName = RandomUtil.randomString();
serverManager.createQueue(false, otherQueueName, null, true, otherQueueName);
HornetQDestination otherQueue = (HornetQDestination)HornetQJMSClient.createQueue(otherQueueName);
Connection connection = JMSUtil.createConnection(InVMConnectorFactory.class.getName());
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
// send on queue
JMSUtil.sendMessageWithProperty(session, queue, key, matchingValue);