assertEquals(1, brokerView.getDurableTopicSubscribers().length);
LOG.info("Current Durable Topic Subscriptions: " + brokerView.getDurableTopicSubscribers().length);
try {
brokerView.destroyDurableSubscriber("subscriber1", "myTopic");
fail("Expected Exception for Durable consumer is in use");
} catch(Exception e) {
LOG.info("Recieved expected exception: " + e.getMessage());
}