15 lines
390 B
C#
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));
|
|
}
|
|
}
|
|
}
|