DvdLib.Test

This commit is contained in:
Ben Magee
2018-12-12 20:25:46 +00:00
parent 78fd157450
commit 9964d2ff93
3 changed files with 56 additions and 0 deletions

View File

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