From 9c440d7aa4a776be9051489a40944d779d032d96 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Thu, 1 Apr 2021 19:15:10 +0200 Subject: add tests project, move configuration verification to VippsConfiguration.cs --- .../IOL.VippsEcommerce.Tests.csproj | 27 ++++++++++++++++++++++ .../Integration/InitialisationTest.cs | 10 ++++++++ 2 files changed, 37 insertions(+) create mode 100644 src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj create mode 100644 src/IOL.VippsEcommerce.Tests/Integration/InitialisationTest.cs (limited to 'src/IOL.VippsEcommerce.Tests') diff --git a/src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj b/src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj new file mode 100644 index 0000000..1410a3d --- /dev/null +++ b/src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj @@ -0,0 +1,27 @@ + + + + net5.0 + + false + + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + diff --git a/src/IOL.VippsEcommerce.Tests/Integration/InitialisationTest.cs b/src/IOL.VippsEcommerce.Tests/Integration/InitialisationTest.cs new file mode 100644 index 0000000..b327baa --- /dev/null +++ b/src/IOL.VippsEcommerce.Tests/Integration/InitialisationTest.cs @@ -0,0 +1,10 @@ +using Xunit; + +namespace IOL.VippsEcommerce.Tests.Integration +{ + public class InitialisationTest + { + [Fact] + public void Fail_On_Invalid_Minimal_Configuration() { } + } +} \ No newline at end of file -- cgit v1.3