}
public void testFilePartNullFileResendsData() throws Exception {
FilePart part = new FilePart(NAME, "emptyfile.ext", null);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
part.send(stream);
String resp1 = stream.toString();
stream = new ByteArrayOutputStream();
part.send(stream);
String resp2 = stream.toString();
assertEquals(resp1, resp2);