{
TopicDeletePolicy policy = new TopicDeletePolicy();
// Explicity say we are not configuring the policy.
policy.configure(null);
MockAMQQueue queue = createOwnedQueue();
queue.addBinding(new Binding(null, null, "bindingKey", queue, new TopicExchange(), null));
policy.performPolicy(queue);
assertFalse("Queue should not be deleted", queue.isDeleted());
assertTrue("Connection should be closed", _connection.isClosed());
}