//////////////////////////////////////////////////////////////////////////
| 264 | |
| 265 | /////////////////////////////////////////////////////////////////////////////// |
| 266 | void UnitTest::fail(const std::string& text) { |
| 267 | ++_counter; |
| 268 | ++_failed; |
| 269 | std::cout << red("not ok") << " " << _counter << " - " << text << '\n'; |
| 270 | } |
| 271 | |
| 272 | /////////////////////////////////////////////////////////////////////////////// |
| 273 | void UnitTest::skip(const std::string& text) { |