| 255 | |
| 256 | |
| 257 | static void RunTestSuite(const std::string& suiteName, SuiteMap suite) |
| 258 | { |
| 259 | SuiteMap::const_iterator itr; |
| 260 | for (itr = suite.begin(); itr != suite.end(); ++itr) |
| 261 | { |
| 262 | TCERR << "----- Running test: " << suiteName << "/" << itr->first << " -----" << std::endl << std::endl; |
| 263 | RunTest(suiteName, itr->first, itr->second); |
| 264 | TCERR << std::endl << "----- Finished test: " << suiteName << "/" << itr->first << " -----" << std::endl; |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | static void RunAllTests() |
| 269 | { |
no test coverage detected