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

2 years ago
1 year ago
1 year ago
1 year ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Xunit.Abstractions;
  7. namespace Shentun.Peis.PlugIns.Gem.Test
  8. {
  9. public class ChargeRequestPlugInsGemTest
  10. {
  11. private readonly ITestOutputHelper _output;
  12. public ChargeRequestPlugInsGemTest(ITestOutputHelper testOutputHelper)
  13. {
  14. _output = testOutputHelper;
  15. }
  16. [Fact]
  17. public async Task ImportResultAsync()
  18. {
  19. var input = new ChargeRequestPlugInsGem(new Guid("1c8cb151-cbc6-4ab5-b50b-0644bf2d515c"));
  20. var loginResult = input.LoginAsync().Result;
  21. await input.SyncChargeRequestFlagFromInterfaceAsync(new Guid("3a12e00d-7c60-64a8-c02d-1ba915cc601e"));
  22. }
  23. }
  24. }