using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using Epost.BLL; using Epost.Model; using System.Collections.Generic; using System.Linq; using Epost.DAL.Cache; using Epost.Common; using System.Web.Helpers; using System.Data; using System.Configuration; using System.Web; namespace Epost.TestToolsWeb.Tests.Controllers { [TestClass] public class UnitTest1 { OrderBLL bll = new OrderBLL(); [TestMethod] public void d() { string ss = "12345678test12345678"; string md= EncryptHelper.EncryptMD5By32(ss); string b64= EncryptHelper.Base64EnCode(md).ToUpper(); string ddd = HttpUtility.UrlEncode(b64); } } }