21 lines
427 B
C#
21 lines
427 B
C#
![]() |
using System.Text.Json;
|
||
|
using Seyounth.Hyosung.Data.Services.Hyosung;
|
||
|
|
||
|
namespace HyosungDataTester;
|
||
|
|
||
|
public class Tests
|
||
|
{
|
||
|
private IHyosungWmsService _wmsService = new HyosungWmsService();
|
||
|
|
||
|
[SetUp]
|
||
|
public void Setup()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void Test1()
|
||
|
{
|
||
|
var result = _wmsService.GetItemInfoByItemCode("TYY-JPS1843018G").Result;
|
||
|
Assert.Pass(JsonSerializer.Serialize(result));
|
||
|
}
|
||
|
}
|