mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 18:07:14 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
50 lines
903 B
C++
50 lines
903 B
C++
//
|
|
// TestSuite.cpp
|
|
//
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
#include "CppUnit/TestResult.h"
|
|
|
|
|
|
namespace CppUnit {
|
|
|
|
|
|
// Deletes all tests in the suite.
|
|
void TestSuite::deleteContents()
|
|
{
|
|
for (std::vector<Test*>::iterator it = _tests.begin(); it != _tests.end(); ++it)
|
|
delete *it;
|
|
}
|
|
|
|
|
|
// Runs the tests and collects their result in a TestResult.
|
|
void TestSuite::run(TestResult *result)
|
|
{
|
|
for (std::vector<Test*>::iterator it = _tests.begin(); it != _tests.end(); ++it)
|
|
{
|
|
if (result->shouldStop ())
|
|
break;
|
|
|
|
Test *test = *it;
|
|
if (!setup().empty())
|
|
test->addSetup(setup());
|
|
test->run(result);
|
|
}
|
|
}
|
|
|
|
|
|
// Counts the number of test cases that will be run by this test.
|
|
int TestSuite::countTestCases() const
|
|
{
|
|
int count = 0;
|
|
|
|
for (std::vector<Test*>::const_iterator it = _tests.begin (); it != _tests.end (); ++it)
|
|
count += (*it)->countTestCases();
|
|
|
|
return count;
|
|
}
|
|
|
|
|
|
} // namespace CppUnit
|