blob: 4e31c7af1811296d05a3b903bf4f61de76c0be1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using NUnit.Framework;
namespace Jellyfin.Model.Test
{
[TestFixture]
public class UnitTest1
{
[Test]
public void Test1()
{
Assert.That(true, Is.True);
}
}
}
|