15 lines
236 B
C#
15 lines
236 B
C#
|
using System;
|
||
|
using NUnit.Framework;
|
||
|
|
||
|
namespace Jellyfin.Controller.Test
|
||
|
{
|
||
|
[TestFixture]
|
||
|
public class UnitTest1
|
||
|
{
|
||
|
[Test]
|
||
|
public void Test1()
|
||
|
{
|
||
|
Assert.That(true, Is.True);
|
||
|
}
|
||
|
}
|
||
|
}
|