diff options
| author | Ben Magee <ben@bmagee.com> | 2018-12-12 21:00:19 +0000 |
|---|---|---|
| committer | Ben Magee <ben@bmagee.com> | 2018-12-12 21:00:19 +0000 |
| commit | 4cfe5b018ecc5a1047e20fc284e7b2f839318fe5 (patch) | |
| tree | 9e79f718ae03116310d2de18454feb669513fd2e /tests/Jellyfin.Server.Implementations.Test/UnitTest1.cs | |
| parent | 96c28eadbe1d03f761e0acc022f6470a77f6e608 (diff) | |
Jellyfin.Server.Implementations.Test project
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Test/UnitTest1.cs')
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Test/UnitTest1.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Test/UnitTest1.cs b/tests/Jellyfin.Server.Implementations.Test/UnitTest1.cs new file mode 100644 index 000000000..cce8b5e36 --- /dev/null +++ b/tests/Jellyfin.Server.Implementations.Test/UnitTest1.cs @@ -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); + } + } +}
\ No newline at end of file |
