chore: Adding macros with message for all ASSERTS.

This commit is contained in:
2025-07-09 22:38:25 +02:00
parent ba65e6c433
commit f4a359b871
2 changed files with 73 additions and 4 deletions

View File

@@ -32,6 +32,7 @@ TEST(Faculty_Negative)
{
ASSERT_EQ(fac(-2), 1);
ASSERT_EQ(fac(0), 1);
ASSERT_TRUE_MSG(false, "Hello");
}
SUIT_SETUP(Basic_Setup)