jellyfin/tests/DvdLib.Test/UnitTest1.cs
2018-12-12 20:25:46 +00:00

15 lines
223 B
C#

using System;
using NUnit.Framework;
namespace DvdLib.Test
{
[TestFixture]
public class UnitTest1
{
[Test]
public void Test1()
{
Assert.That(true, Is.True);
}
}
}