Rewritten completely; designed to work with new framework

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@233 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder 2002-07-15 06:50:53 +00:00
parent 6c3b4a051f
commit c577d5b5f4

View File

@ -0,0 +1,84 @@
#include <TestSuite.h>
#include <cppunit/Test.h>
#include <cppunit/TestResult.h>
// Default constructor
BTestSuite::BTestSuite( std::string name )
: fName(name)
{
}
// Destructor
BTestSuite::~BTestSuite() {
deleteContents();
}
// Deletes all tests in the suite.
void
BTestSuite::deleteContents() {
for ( std::map<std::string, CppUnit::Test*>::iterator it = fTests.begin();
it != fTests.end();
++it)
delete it->second;
fTests.clear();
}
/// Runs the tests and collects their result in a TestResult.
void
BTestSuite::run( CppUnit::TestResult *result ) {
for ( std::map<std::string, CppUnit::Test*>::iterator it = fTests.begin();
it != fTests.end();
++it )
{
if ( result->shouldStop() )
break;
Test *test = it->second;
test->run( result );
}
}
// Counts the number of test cases that will be run by this test.
int
BTestSuite::countTestCases() const {
int count = 0;
for ( std::map<std::string, CppUnit::Test *>::const_iterator it = fTests.begin();
it != fTests.end();
++it )
count += it->second->countTestCases();
return count;
}
// Adds a test to the suite.
void
BTestSuite::addTest(std::string name, CppUnit::Test *test) {
fTests[name] = test;
}
// Returns a string representation of the test suite.
std::string
BTestSuite::toString() const {
return "suite " + getName();
}
// Returns the name of the test suite.
std::string
BTestSuite::getName() const {
return fName;
}
const std::map<std::string, CppUnit::Test*> &
BTestSuite::getTests() const {
return fTests;
}