//////////////////////////////////////////////////////////////////////////
| 271 | |
| 272 | /////////////////////////////////////////////////////////////////////////////// |
| 273 | void UnitTest::skip(const std::string& text) { |
| 274 | ++_counter; |
| 275 | ++_skipped; |
| 276 | std::cout << yellow("ok") << " " << _counter << " - " << text << " # skip" << '\n'; |
| 277 | } |
| 278 | |
| 279 | /////////////////////////////////////////////////////////////////////////////// |
| 280 | std::string UnitTest::red(const std::string& input) { |