public void setup() {
MockitoAnnotations.initMocks(this);
RejectLargeMail rejectLargeMail = new RejectLargeMail();
rejectLargeMail.setMaxAllowedSize(3000);
filter = rejectLargeMail.createInstance(null);
filter.setChain(chain);
}
@Test
public void testSmallMail() throws TooMuchDataException,