@Test
public void testIdleProbe() throws Exception {
SimpleStreamProvider simpleStream = new SimpleStreamProvider(messages, true, true);
int count = 0;
try {
InputStream stream = simpleStream.createInputStream();
BlockingQueue<String> queue = new ArrayBlockingQueue<String>(10);
HosebirdMessageProcessor processor = new StringDelimitedProcessor(queue);
processor.setup(stream);
// read until we hit the IOException
while (count < messages.length * 2) {