MCPcopy Create free account
hub / github.com/Tripwire/tripwire-open-source / RunTestSuite

Function RunTestSuite

src/twtest/test.cpp:257–266  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255
256
257static 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
268static void RunAllTests()
269{

Callers 2

RunAllTestsFunction · 0.85
RunTestFunction · 0.85

Calls 3

RunTestFunction · 0.85
beginMethod · 0.80
endMethod · 0.80

Tested by

no test coverage detected