public void canGetMD5FromText()
        {
            MD5Hasher hasher = new MD5Hasher();
            string    text   = "Some text to hash in MD5 mode";

            string hash = hasher.HashText(text);

            Assert.IsTrue(hash != null);
            Assert.AreNotEqual(text, hash);
        }