Files
DotNetNetIt/src/tests/UnitTest1.cs
2025-09-02 17:10:17 -04:00

27 lines
368 B
C#

using System.Runtime.CompilerServices;
using netit;
namespace tests;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
try
{
//NetIt.test();
}
catch
{
Assert.Fail();
}
Assert.Pass();
}
}