22 lines
572 B
C#
22 lines
572 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 QueryCashFlowTests
|
|
{
|
|
[TestMethod()]
|
|
public void QueryDepositTest()
|
|
{
|
|
QueryCashFlow queryCashFlow = new QueryCashFlow();
|
|
queryCashFlow.QuerydepConsumes(DateTime.Parse("2022-08-15"));
|
|
Assert.Fail();
|
|
}
|
|
}
|
|
} |