diff options
| author | Ben Magee <ben@bmagee.com> | 2018-12-12 21:16:58 +0000 |
|---|---|---|
| committer | Ben Magee <ben@bmagee.com> | 2018-12-12 21:16:58 +0000 |
| commit | 1f47fece5744455d951840eed70d445b943bddea (patch) | |
| tree | a9bce41c231aff44ea5d66b136a7e76c027ae14d /tests/Jellyfin.Common.Test/UnitTest1.cs | |
| parent | cd86fd767a19630701cbd9b92dd3d5638b55f7b8 (diff) | |
Jellyfin.Common.Test
Diffstat (limited to 'tests/Jellyfin.Common.Test/UnitTest1.cs')
| -rw-r--r-- | tests/Jellyfin.Common.Test/UnitTest1.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/Jellyfin.Common.Test/UnitTest1.cs b/tests/Jellyfin.Common.Test/UnitTest1.cs new file mode 100644 index 000000000..8f15221a2 --- /dev/null +++ b/tests/Jellyfin.Common.Test/UnitTest1.cs @@ -0,0 +1,15 @@ +using System; +using NUnit.Framework; + +namespace Jellyfin.Common.Test +{ + [TestFixture] + public class UnitTest1 + { + [Test] + public void Test1() + { + Assert.That(true, Is.True); + } + } +}
\ No newline at end of file |
