This commit is contained in:
h z
2024-06-21 23:50:03 +08:00
commit a9dd3e70e2
11 changed files with 515 additions and 0 deletions

17
UnitTest1.cs Normal file
View File

@@ -0,0 +1,17 @@
using NUnit.Framework;
namespace VirtualChemistryTest;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}