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