diff options
| author | Ben Magee <ben@bmagee.com> | 2018-12-12 20:29:39 +0000 |
|---|---|---|
| committer | Ben Magee <ben@bmagee.com> | 2018-12-12 20:29:39 +0000 |
| commit | 9c74e4f10e2560f7a8001ff4811b1c6c3387187b (patch) | |
| tree | 32a1c130ac128c0dc669e8e684a22286885db569 /tests | |
| parent | 9964d2ff93661c420287630bd4b6e78e469641fc (diff) | |
Jellyfin.Dlna tests
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.Test.csproj | 19 | ||||
| -rw-r--r-- | tests/Jellyfin.Dlna.Test/UnitTest1.cs | 15 |
2 files changed, 34 insertions, 0 deletions
diff --git a/tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.Test.csproj b/tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.Test.csproj new file mode 100644 index 000000000..d3ddc6783 --- /dev/null +++ b/tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.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.Dlna.Test/UnitTest1.cs b/tests/Jellyfin.Dlna.Test/UnitTest1.cs new file mode 100644 index 000000000..13ebfc68f --- /dev/null +++ b/tests/Jellyfin.Dlna.Test/UnitTest1.cs @@ -0,0 +1,15 @@ +using System; +using NUnit.Framework; + +namespace Jellyfin.Dlna.Test +{ + [TestFixture] + public class UnitTest1 + { + [Test] + public void Test1() + { + Assert.That(true, Is.True); + } + } +}
\ No newline at end of file |
