public class TestHashUtility {
@Test
public void testMD5HashForTextValueValue() throws IOException {
Text key = new Text("abc2hf123");
MD5Hash md5HashKey1 = HashUtility.getMD5Hash(key);
MD5Hash md5HashKey2 = HashUtility.getMD5Hash(key);
assertEquals(md5HashKey1, md5HashKey2);
}