@Test(expected = RejectException.class)
public void testLoopingData() throws TooMuchDataException, RejectException,
IOException {
StopLoop stopLoop = new StopLoop();
stopLoop.setMaxReceivedHeaders(2);
MailData bouncedMail =
ExampleMailData.fromResource(getClass(), "looping.eml");
stopLoop.data(bouncedMail);
}