13 lines
164 B
C#
13 lines
164 B
C#
using Xunit;
|
|
|
|
namespace Server.Tests
|
|
{
|
|
public class EmptyTests
|
|
{
|
|
[Fact]
|
|
public void EmptyTest()
|
|
{
|
|
Assert.True(true);
|
|
}
|
|
}
|
|
}
|