StringPart part = new StringPart(NAME, PART_DATA);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
part.send(stream);
String resp1 = stream.toString();
stream = new ByteArrayOutputStream();
part.send(stream);
String resp2 = stream.toString();
assertEquals(resp1, resp2);
}
public void testFilePartNullFileResendsData() throws Exception {