mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 06:53:07 +00:00
16 lines
313 B
C#
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);
|
|
}
|
|
}
|
|
}
|