aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBen Magee <ben@bmagee.com>2018-12-12 21:15:04 +0000
committerBen Magee <ben@bmagee.com>2018-12-12 21:15:04 +0000
commitcd86fd767a19630701cbd9b92dd3d5638b55f7b8 (patch)
treea29d375d2348f3d8117a6b0195667c0a88461671 /tests
parenta0507c2e44800c8fe6c45ea02d8d363d00d77399 (diff)
Jellyfin.Api.Test
Diffstat (limited to 'tests')
-rw-r--r--tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj19
-rw-r--r--tests/Jellyfin.Api.Test/UnitTest1.cs15
2 files changed, 34 insertions, 0 deletions
diff --git a/tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj b/tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj
new file mode 100644
index 000000000..d3ddc6783
--- /dev/null
+++ b/tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj
@@ -0,0 +1,19 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>netcoreapp2.1</TargetFramework>
+
+ <IsPackable>false</IsPackable>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="AutoFixture" Version="4.6.0" />
+ <PackageReference Include="AutoFixture.AutoMoq" Version="4.6.0" />
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
+ <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
+ <PackageReference Include="Moq" Version="4.10.1" />
+ <PackageReference Include="NUnit" Version="3.11.0" />
+ <PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
+ </ItemGroup>
+
+</Project>
diff --git a/tests/Jellyfin.Api.Test/UnitTest1.cs b/tests/Jellyfin.Api.Test/UnitTest1.cs
new file mode 100644
index 000000000..781556758
--- /dev/null
+++ b/tests/Jellyfin.Api.Test/UnitTest1.cs
@@ -0,0 +1,15 @@
+using System;
+using NUnit.Framework;
+
+namespace Jellyfin.Api.Test
+{
+ [TestFixture]
+ public class UnitTest1
+ {
+ [Test]
+ public void Test1()
+ {
+ Assert.That(true, Is.True);
+ }
+ }
+} \ No newline at end of file