| 105 | } |
| 106 | |
| 107 | inline void TestProgress::startTest (std::string_view testName) |
| 108 | { |
| 109 | CHOC_ASSERT (! currentCategory.empty()); |
| 110 | currentTest = currentCategory + "/" + std::string (testName); |
| 111 | currentTestFailed = false; |
| 112 | print ("[ RUN ] " + currentTest); |
| 113 | } |
| 114 | |
| 115 | inline void TestProgress::endTest() |
| 116 | { |