//////////////////////////////////////////////////////////////////////////
| 257 | |
| 258 | /////////////////////////////////////////////////////////////////////////////// |
| 259 | void UnitTest::pass(const std::string& text) { |
| 260 | ++_counter; |
| 261 | ++_passed; |
| 262 | std::cout << green("ok") << " " << _counter << " - " << text << '\n'; |
| 263 | } |
| 264 | |
| 265 | /////////////////////////////////////////////////////////////////////////////// |
| 266 | void UnitTest::fail(const std::string& text) { |