summaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce.Tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/IOL.VippsEcommerce.Tests')
-rw-r--r--src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj27
-rw-r--r--src/IOL.VippsEcommerce.Tests/Integration/InitialisationTest.cs10
2 files changed, 37 insertions, 0 deletions
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 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net5.0</TargetFramework>
+
+ <IsPackable>false</IsPackable>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
+ <PackageReference Include="xunit" Version="2.4.1" />
+ <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ <PrivateAssets>all</PrivateAssets>
+ </PackageReference>
+ <PackageReference Include="coverlet.collector" Version="1.3.0">
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ <PrivateAssets>all</PrivateAssets>
+ </PackageReference>
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\IOL.VippsEcommerce\IOL.VippsEcommerce.csproj" />
+ </ItemGroup>
+
+</Project>
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