ModernUO/Projects/Scripts.Tests/EmptyTests.cs
2020-04-27 19:27:05 -07:00

13 lines
164 B
C#

using Xunit;
namespace Server.Tests
{
public class EmptyTests
{
[Fact]
public void EmptyTest()
{
Assert.True(true);
}
}
}