2
0
mirror of synced 2025-01-12 09:34:40 +00:00
cs-codex-dist-tests/Framework/Utils/FrameworkAssert.cs
2023-09-20 10:51:47 +02:00

16 lines
313 B
C#

namespace Utils
{
public static class FrameworkAssert
{
public static void That(bool condition, string message)
{
if (!condition) Fail(message);
}
public static void Fail(string message)
{
throw new Exception(message);
}
}
}