From 4b888fa59e1d4069d4ceae670f3945e7fc7ae2bd Mon Sep 17 00:00:00 2001 From: Ben Magee Date: Wed, 12 Dec 2018 20:56:27 +0000 Subject: Jellyfin.Notifications.Test project --- .../Jellyfin.Notifications.Test.csproj | 19 +++++++++++++++++++ tests/Jellyfin.Notifications.Test/UnitTest1.cs | 15 +++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj create mode 100644 tests/Jellyfin.Notifications.Test/UnitTest1.cs (limited to 'tests') diff --git a/tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj b/tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj new file mode 100644 index 000000000..d3ddc6783 --- /dev/null +++ b/tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj @@ -0,0 +1,19 @@ + + + + netcoreapp2.1 + + false + + + + + + + + + + + + + diff --git a/tests/Jellyfin.Notifications.Test/UnitTest1.cs b/tests/Jellyfin.Notifications.Test/UnitTest1.cs new file mode 100644 index 000000000..80ecc4434 --- /dev/null +++ b/tests/Jellyfin.Notifications.Test/UnitTest1.cs @@ -0,0 +1,15 @@ +using System; +using NUnit.Framework; + +namespace Jellyfin.Notifications.Test +{ + [TestFixture] + public class UnitTest1 + { + [Test] + public void Test1() + { + Assert.That(true, Is.True); + } + } +} \ No newline at end of file -- cgit v1.2.3