mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
Jellyfin.Test project
This commit is contained in:
19
tests/Jellyfin.Test/Jellyfin.Test.csproj
Normal file
19
tests/Jellyfin.Test/Jellyfin.Test.csproj
Normal file
@@ -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>
|
||||
15
tests/Jellyfin.Test/UnitTest1.cs
Normal file
15
tests/Jellyfin.Test/UnitTest1.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace Jellyfin.Test
|
||||
{
|
||||
[TestFixture]
|
||||
public class UnitTest1
|
||||
{
|
||||
[Test]
|
||||
public void Test1()
|
||||
{
|
||||
Assert.That(true, Is.True);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user