This commit is contained in:
2026-04-15 23:18:12 -04:00
commit 0386577b8c
9 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using Shouldly;
namespace StructuralInstance.Test;
public class UnitTest1
{
[Fact]
public void Test1()
{
var c = new Class1();
c.Test.ShouldBe("Hello Month");
}
}