aboutsummaryrefslogtreecommitdiff
path: root/tests/DvdLib.Test/UnitTest1.cs
blob: 7328ccaf3cf1763a0461888c9ca0c79618476268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using NUnit.Framework;

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