garbage day

This commit is contained in:
2025-09-02 17:10:17 -04:00
parent b5c2250d4d
commit c55f1be807
136 changed files with 2271 additions and 2 deletions

27
src/tests/UnitTest1.cs Normal file
View File

@@ -0,0 +1,27 @@
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();
}
}