14 lines
200 B
C#
14 lines
200 B
C#
using Shouldly;
|
|
|
|
namespace StructuralInstance.Test;
|
|
|
|
public class UnitTest1
|
|
{
|
|
[Fact]
|
|
public void Test1()
|
|
{
|
|
var c = new Class1();
|
|
c.Test.ShouldBe("Hello Month");
|
|
}
|
|
}
|