33 #ifndef __UNITTEST_UNITTEST_HH__ 34 #define __UNITTEST_UNITTEST_HH__ 46 void checkVal(
const char *file,
const unsigned line,
47 const char *
test,
const bool result);
98 void setCase(
const char *newCase);
103 #define EXPECT_TRUE(expr) \ 104 UnitTest::checkVal(__FILE__, __LINE__, "EXPECT_TRUE(" #expr ")", (expr)) 105 #define EXPECT_FALSE(expr) \ 107 UnitTest::checkVal(__FILE__, __LINE__, \ 108 "EXPECT_FALSE(" #expr ")", (expr) == false) 109 #define EXPECT_EQ(lhs, rhs) \ 111 UnitTest::checkVal(__FILE__, __LINE__, \ 112 "EXPECT_EQ(" #lhs ", " #rhs ")", (lhs) == (rhs)); void checkVal(const char *file, const unsigned line, const char *test, const bool result)
Function that actually handles checking whether an EXPECT_* passed.
unsigned failures()
Function that returns the current number of failed checks.
void reset()
Zero the number of passes and failures so far.
bool printOnPass()
Print on pass is a switch that specifies whether to print a message even when a check passes...
void setCase(const char *newCase)
Sets the current test case.
unsigned passes()
Function that returns the current number of passed checks.
unsigned printResults()
Function to call at the end of a test that prints an overall result and a summary of how many checks ...