startit/Emne 3/UnitTesting/UnitTesting.Test/UnitTest1.cs

11 lines
166 B
C#
Raw Normal View History

2025-01-02 13:09:14 +01:00
namespace UnitTesting.Test;
public class StatsTest
{
[Test]
public void TestWith3And4()
{
var stats = new Stats();
Assert.Pass();
}
}