|
@@ -1,14 +1,20 @@
|
|
|
using Hotline.File;
|
|
|
+using Hotline.Share.Tools;
|
|
|
+using Hotline.Snapshot.IRepository;
|
|
|
+using Shouldly;
|
|
|
using TianQue.Sdk;
|
|
|
+using TianQue.Sdk.Models;
|
|
|
|
|
|
namespace Hotline.Tests.Infrastructure;
|
|
|
public class TianQueTest
|
|
|
{
|
|
|
private readonly IFileDomainService _fileDomainService;
|
|
|
+ private readonly IGuiderSystemService _tiqnQueService;
|
|
|
|
|
|
- public TianQueTest(IFileDomainService fileDomainService)
|
|
|
+ public TianQueTest(IFileDomainService fileDomainService, IGuiderSystemService tiqnQueService)
|
|
|
{
|
|
|
_fileDomainService = fileDomainService;
|
|
|
+ _tiqnQueService = tiqnQueService;
|
|
|
}
|
|
|
|
|
|
[Fact]
|
|
@@ -34,6 +40,8 @@ public class TianQueTest
|
|
|
|
|
|
//// Assert
|
|
|
//Assert.Equal("ok", result);
|
|
|
+
|
|
|
+ //await _tiqnQueService.PostOrder(null, null, null);
|
|
|
}
|
|
|
|
|
|
[Fact]
|