Ejemplo n.º 1
0
        public void ED_GetMd5Hash_Test()
        {
            string str = "123456";

            var result = _instance.GetMd5Hash(str);

            Assert.IsNotNull(result);
            Debug.WriteLine(result);

            for (int i = 0; i < 80; i++)
            {
                str = str + "123456";
            }
            result = _instance.GetMd5Hash(str);
            Assert.IsNotNull(result);
            Debug.WriteLine(result);
        }