// Start the consumer pre-fetching
// Don't care about response as we will fill the broker up with messages
// after this point and ensure that the client is disconnected at the
// right point.
consumer.receiveNoWait();
startPublisher(_destination);
boolean disconnected = _disconnectionLatch.await(DISCONNECTION_WAIT, TimeUnit.SECONDS);
assertTrue("Client was not disconnected", disconnected);