diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2021-04-04 17:24:42 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2021-04-04 17:24:42 +0200 |
| commit | 5c5ba05c49ff3bacfc5a29b21e3d9683e6396ad5 (patch) | |
| tree | 4d589f4c54a9744aec1cd311e4ca0e6afe5efe4a /src/IOL.VippsEcommerce.Tests/PaymentInitiationTests.cs | |
| parent | 917111dd9709f46080c25b971134d90ffdf93794 (diff) | |
| download | dotnet-vipps-ecommerce-5c5ba05c49ff3bacfc5a29b21e3d9683e6396ad5.tar.xz dotnet-vipps-ecommerce-5c5ba05c49ff3bacfc5a29b21e3d9683e6396ad5.zip | |
Make helper for getting test service
Diffstat (limited to 'src/IOL.VippsEcommerce.Tests/PaymentInitiationTests.cs')
| -rw-r--r-- | src/IOL.VippsEcommerce.Tests/PaymentInitiationTests.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/IOL.VippsEcommerce.Tests/PaymentInitiationTests.cs b/src/IOL.VippsEcommerce.Tests/PaymentInitiationTests.cs new file mode 100644 index 0000000..d802fb1 --- /dev/null +++ b/src/IOL.VippsEcommerce.Tests/PaymentInitiationTests.cs @@ -0,0 +1,13 @@ +using Xunit.Abstractions; + +namespace IOL.VippsEcommerce.Tests +{ + public class PaymentInitiationTests + { + private readonly ITestOutputHelper _helper; + + public PaymentInitiationTests(ITestOutputHelper helper) { + _helper = helper; + } + } +}
\ No newline at end of file |
