22 lines
543 B
C#
22 lines
543 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YLErp.Modules.UnderlyingModule.ApiModudle;
|
|
|
|
namespace YLErp.Modules.UnderlyingModule
|
|
{
|
|
[TestClass]
|
|
public class ApiModuleTest : UnitTestBase
|
|
{
|
|
[TestMethod]
|
|
public void TestGetUnderlyingList()
|
|
{
|
|
var datas = new ApiDataQueryService(CurUser).GetUnderlyingList();
|
|
Assert.IsTrue(datas.Any());
|
|
}
|
|
}
|
|
}
|