示例#1
0
        public void MD5GetBytesTest()
        {
            string md5_str = string.Empty;

            byte[] expected = null;
            byte[] actual;
            actual = PasswordEncrypt_Accessor.MD5GetBytes(md5_str);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("验证此测试方法的正确性。");
        }
示例#2
0
        public void MD5EncryptTest1()
        {
            byte[] md5_bytes = null;
            string expected  = string.Empty;
            string actual;

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