jellyfin/tests/Jellyfin.Notifications.Test/UnitTest1.cs

15 lines
239 B
C#
Raw Normal View History

2018-12-12 21:56:27 +01:00
using System;
using NUnit.Framework;
namespace Jellyfin.Notifications.Test
{
[TestFixture]
public class UnitTest1
{
[Test]
public void Test1()
{
Assert.That(true, Is.True);
}
}
}