public void MD5EncryptTest()
        {
            string md5_str  = string.Empty;
            string expected = string.Empty;
            string actual;

            actual = PasswordEncrypt.MD5Encrypt(md5_str);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("验证此测试方法的正确性。");
        }