Jellyfin.Server.Implementations.Test project

This commit is contained in:
Ben Magee
2018-12-12 21:00:19 +00:00
parent 96c28eadbe
commit 4cfe5b018e
3 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using NUnit.Framework;
namespace Jellyfin.Server.Implementations.Test
{
[TestFixture]
public class UnitTest1
{
[Test]
public void Test1()
{
Assert.That(true, Is.True);
}
}
}