diff options
| author | Anthony Lavado <anthonylavado@users.noreply.github.com> | 2018-12-12 20:13:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-12 20:13:43 -0500 |
| commit | 45cb71442938713f95cd412eebaddf297e0e82ab (patch) | |
| tree | 85d9145c1cdf55e513812584f1ed0061dd4fde8c /tests/Jellyfin.Controller.Test/UnitTest1.cs | |
| parent | 3a451ebd3722089561887c4e07b8c0fce0a475cf (diff) | |
| parent | 8a7f0b66958d9526e4e73ef7dda1d9efde9e0420 (diff) | |
Merge pull request #112 from BnMcG/67-testing
Adding Test Projects
Diffstat (limited to 'tests/Jellyfin.Controller.Test/UnitTest1.cs')
| -rw-r--r-- | tests/Jellyfin.Controller.Test/UnitTest1.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/Jellyfin.Controller.Test/UnitTest1.cs b/tests/Jellyfin.Controller.Test/UnitTest1.cs new file mode 100644 index 000000000..4d8ad2169 --- /dev/null +++ b/tests/Jellyfin.Controller.Test/UnitTest1.cs @@ -0,0 +1,15 @@ +using System; +using NUnit.Framework; + +namespace Jellyfin.Controller.Test +{ + [TestFixture] + public class UnitTest1 + { + [Test] + public void Test1() + { + Assert.That(true, Is.True); + } + } +}
\ No newline at end of file |
