Files
zszq-trs/UnitTestProject/Modules/UnderlyingModule/StockBlackWhiteServiceTest.cs
T
2024-05-09 14:06:26 +08:00

15 lines
390 B
C#

namespace YLErp.Modules.UnderlyingModule
{
[TestClass]
public class StockBlackWhiteServiceTest : UnitTestBase
{
[TestMethod]
public void TestCanSetLaunchState()
{
var str = new StockBlackWhiteService(OptUserInfo.SystemUser).CanSetLaunchState(new[] { 29263 }, "0");
Assert.IsFalse(string.IsNullOrEmpty(str));
}
}
}