//Validate we don't have a message on the queue before we start
assertNull("Message should be null", message);
// Move it to from the topic to the queue
managedQueue.moveMessages(msgID, msgID, ((AMQTopic) topic).getQueueName());
// Retrieve the newly moved message
message = consumer.receive(1000);
assertNotNull("Message should not be null", message);