Files
T-DAS/Epost.TestToolsWeb.Tests/Controllers/UnitTest1.cs

36 lines
803 B
C#
Raw Normal View History

2023-01-13 15:30:20 +08:00
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;
2024-01-17 15:56:28 +08:00
using System.Text.RegularExpressions;
2023-01-13 15:30:20 +08:00
namespace Epost.TestToolsWeb.Tests.Controllers
{
[TestClass]
public class UnitTest1
{
OrderBLL bll = new OrderBLL();
[TestMethod]
public void d()
{
2024-01-17 15:56:28 +08:00
string showmes = "211100|总|938275908324|93875|934725";
if (!Regex.IsMatch(showmes, @"[\u4e00-\u9fa5]"))
2023-01-13 15:30:20 +08:00
{
2024-01-17 15:56:28 +08:00
}
else {
LogHelper.WriteLogInfo("dasf");
}
2023-01-13 15:30:20 +08:00
}
2024-01-17 15:56:28 +08:00
2023-01-13 15:30:20 +08:00
}
}