startit/Emne 3/UnitTesting/UnitTesting.Test/UnitTest1.cs
Geir Okkenhaug Jerstad 3cbfff200e litt unit testing
2025-01-02 13:09:14 +01:00

11 lines
166 B
C#

namespace UnitTesting.Test;
public class StatsTest
{
[Test]
public void TestWith3And4()
{
var stats = new Stats();
Assert.Pass();
}
}