diff options
| author | Ben Magee <ben@bmagee.com> | 2018-12-12 20:52:01 +0000 |
|---|---|---|
| committer | Ben Magee <ben@bmagee.com> | 2018-12-12 20:52:01 +0000 |
| commit | be36c494f6f94bbef993041480acdb454ee6401b (patch) | |
| tree | cb08acab0dc3a6b924dbdd3a8c9ba02b4dabd42d /tests | |
| parent | 2934c5908084ea686d4937d2d8cd34f8602fd930 (diff) | |
Jellyfin.Naming.Test project
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Jellyfin.Naming.Test/Jellyfin.Naming.Test.csproj | 19 | ||||
| -rw-r--r-- | tests/Jellyfin.Naming.Test/UnitTest1.cs | 15 |
2 files changed, 34 insertions, 0 deletions
diff --git a/tests/Jellyfin.Naming.Test/Jellyfin.Naming.Test.csproj b/tests/Jellyfin.Naming.Test/Jellyfin.Naming.Test.csproj new file mode 100644 index 000000000..85357d199 --- /dev/null +++ b/tests/Jellyfin.Naming.Test/Jellyfin.Naming.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" /> + <PackageReference Include="Moq" Version="4.10.1" /> + <PackageReference Include="NUnit" Version="3.11.0" /> + <PackageReference Include="NUnit3TestAdapter" Version="3.11.2" /> + <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> + </ItemGroup> + +</Project> diff --git a/tests/Jellyfin.Naming.Test/UnitTest1.cs b/tests/Jellyfin.Naming.Test/UnitTest1.cs new file mode 100644 index 000000000..1f2233e95 --- /dev/null +++ b/tests/Jellyfin.Naming.Test/UnitTest1.cs @@ -0,0 +1,15 @@ +using System; +using NUnit.Framework; + +namespace Jellyfin.Naming.Test +{ + [TestFixture] + public class UnitTest1 + { + [Test] + public void Test1() + { + Assert.That(true, Is.True); + } + } +}
\ No newline at end of file |
