mirror of
https://github.com/kwsch/pkNX.git
synced 2026-06-01 01:37:19 -05:00
15 lines
207 B
C#
15 lines
207 B
C#
using FluentAssertions;
|
|
using Xunit;
|
|
|
|
namespace pkNX.Tests
|
|
{
|
|
public class UnitTest1
|
|
{
|
|
[Fact]
|
|
public void TestMethod1()
|
|
{
|
|
true.Should().BeTrue();
|
|
}
|
|
}
|
|
}
|