FileAssert.assertMD5CheckSum()
Brought to you by:
vbossica
For my dev, I have done a method
assertMD5CheckSum(String md5SumExpected, InputStream
in) which test that input stream md5 checksum is what
is expected.
This methods have one main advantage. In I/O
operations, it is twice more performant because
md5checksum can be hardcoded in JavaCode so there is no
more need two read two input streams.
Are you interested to add that in your FileAssert class ?