You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
957 B
33 lines
957 B
using Shentun.Peis.PlugIns.Extensions.ImportLisResults.Dian;
|
|
using Shentun.Peis.PlugIns.Extensions.LisRequests.Hzcy;
|
|
using Shentun.Peis.PlugIns.LisRequests;
|
|
using Shentun.Utilities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Shentun.Peis.PlugIns.Extensions.Test
|
|
{
|
|
public class ImportLisResultPlugInsDianTest
|
|
{
|
|
private readonly ITestOutputHelper _output;
|
|
public ImportLisResultPlugInsDianTest(ITestOutputHelper testOutputHelper)
|
|
{
|
|
_output = testOutputHelper;
|
|
|
|
}
|
|
[Fact]
|
|
public async Task SendRequest()
|
|
{
|
|
Guid thirdInterfaceId = Guid.Parse("3a1d1c2a-7ae5-1bf0-c889-607febbf6c20");
|
|
var importLisResultPlugInsDian = new ImportLisResultPlugInsDian(thirdInterfaceId);
|
|
|
|
await importLisResultPlugInsDian.DoWork();
|
|
|
|
}
|
|
|
|
}
|
|
}
|