TG.WXCRM.V4/wechatTest/Application/Order/QueryOrderAuditTests.cs

30 lines
792 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
using CRM.Core.BLL.Application.Order;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRM.Core.BLL.Application.Order.Tests
{
[TestClass()]
public class QueryOrderAuditTests
{
[TestMethod()]
public void orderAuditQueryTest()
{
QueryOrderAudit queryOrderAudit = new QueryOrderAudit();
//queryOrderAudit.orderAuditQuery(1, "202208");
Assert.Fail();
}
[TestMethod()]
public void pt1orderidsTest()
{
QueryOrderAudit queryOrderAudit = new QueryOrderAudit();
//queryOrderAudit.pt1orderids();
Assert.Fail();
}
}
}