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);
}
/** Writes PART_DATA out to a temporary file and returns the file it