buffer.BUFFER_SIZE = 128 * 1024 * 1024;
buffer.doWork();
in.close();
out.close();
final String inputMd5 = in.md5();
final String outputMd5 = out.md5();
Assert.assertEquals(outputMd5, inputMd5, "MD5s do not match between input and output.");
inputFile.delete();
}
}