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.
31 lines
809 B
31 lines
809 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Shentun.Peis.PlugIns.Gem.Test
|
|
{
|
|
public class ChargeRequestPlugInsGemTest
|
|
{
|
|
private readonly ITestOutputHelper _output;
|
|
public ChargeRequestPlugInsGemTest(ITestOutputHelper testOutputHelper)
|
|
{
|
|
_output = testOutputHelper;
|
|
|
|
}
|
|
|
|
[Fact]
|
|
public async Task ImportResultAsync()
|
|
{
|
|
|
|
|
|
var input = new ChargeRequestPlugInsGem(new Guid("1c8cb151-cbc6-4ab5-b50b-0644bf2d515c"));
|
|
var loginResult = input.LoginAsync().Result;
|
|
await input.SyncChargeRequestFlagFromInterfaceAsync(new Guid("3a12cf84-4516-49d6-345f-87c17ed6b252"));
|
|
|
|
|
|
}
|
|
}
|
|
}
|