| 266 | } |
| 267 | |
| 268 | static void RunAllTests() |
| 269 | { |
| 270 | TestMap::const_iterator itr; |
| 271 | for (itr = tests.begin(); itr != tests.end(); ++itr) |
| 272 | { |
| 273 | TCERR << std::endl << "===== Starting test suite: " << itr->first << " =====" << std::endl; |
| 274 | RunTestSuite(itr->first, itr->second); |
| 275 | TCERR << "===== Finished test suite: " << itr->first << " =====" << std::endl; |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | static void ListTests() |
| 280 | { |
no test coverage detected