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.

19 lines
439 B

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. }
  17. }