aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce.Tests/ConfigurationTests.cs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-01-28 21:17:59 +0100
committerivarlovlie <git@ivarlovlie.no>2022-01-28 21:17:59 +0100
commite513f0b7483022b0ec0d13b8a7df178d7f5ab88c (patch)
treee4ce6b9a8c3b9660d4e2872fafb1728d5038520e /src/IOL.VippsEcommerce.Tests/ConfigurationTests.cs
parentdea3a825a06e7291889b2fb8886dc05148762f33 (diff)
downloaddotnet-vipps-ecommerce-e513f0b7483022b0ec0d13b8a7df178d7f5ab88c.tar.xz
dotnet-vipps-ecommerce-e513f0b7483022b0ec0d13b8a7df178d7f5ab88c.zip
feat!: Remove support for different configuration stories
Configuration values is required to be explicitly specified when adding to DI
Diffstat (limited to 'src/IOL.VippsEcommerce.Tests/ConfigurationTests.cs')
-rw-r--r--src/IOL.VippsEcommerce.Tests/ConfigurationTests.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/IOL.VippsEcommerce.Tests/ConfigurationTests.cs b/src/IOL.VippsEcommerce.Tests/ConfigurationTests.cs
index 41c0342..0890043 100644
--- a/src/IOL.VippsEcommerce.Tests/ConfigurationTests.cs
+++ b/src/IOL.VippsEcommerce.Tests/ConfigurationTests.cs
@@ -1,17 +1,9 @@
-using IOL.VippsEcommerce.Models;
using Xunit;
-using Xunit.Abstractions;
namespace IOL.VippsEcommerce.Tests
{
public class InitialisationTests
{
- private readonly ITestOutputHelper _helper;
-
- public InitialisationTests(ITestOutputHelper helper) {
- _helper = helper;
- }
-
[Fact]
public void Succeed_On_Valid_Minimal_Configuration() {
var vippsEcommerceService = Helpers.GetVippsEcommerceService(o => {
@@ -23,31 +15,5 @@ namespace IOL.VippsEcommerce.Tests
vippsEcommerceService.Configuration.Verify();
}
-
- [Fact]
- public void Configuration_Follows_Through_Initialisation() {
- var vippsEcommerceService = Helpers.GetVippsEcommerceService(o => {
- o.ApiUrl = "https://validuri.no";
- o.ClientId = "asdf";
- o.ClientSecret = "asdf";
- o.SecondarySubscriptionKey = "asdf";
- o.PrimarySubscriptionKey = "asdf";
- o.SystemName = "asdf";
- o.SystemVersion = "asdf";
- o.SystemPluginName = "asdf";
- o.SystemPluginVersion = "asdf";
- o.MerchantSerialNumber = "asdf";
- o.CacheDirectoryPath = "asdf";
- o.CacheEncryptionKey = "asdf";
- o.ConfigurationMode = VippsConfigurationMode.ONLY_OBJECT;
- });
-
- foreach (var prop in typeof(VippsConfiguration).GetProperties()) {
- var value = prop.GetValue(vippsEcommerceService.Configuration, null);
- _helper.WriteLine(prop.Name);
- _helper.WriteLine(value?.ToString() ?? "EMPTY");
- Assert.False(value == default);
- }
- }
}
}