CppUnit project page | FAQ | CppUnit home page |
A Composite of Tests. More...
#include <TestComposite.h>
Public Member Functions | |
TestComposite (const std::string &name="") | |
~TestComposite () | |
void | run (TestResult *result) |
Run the test, collecting results. More... | |
int | countTestCases () const |
Return the number of test cases invoked by run(). More... | |
std::string | getName () const |
Returns the test name. More... | |
![]() | |
virtual | ~Test () |
virtual int | getChildTestCount () const =0 |
Returns the number of direct child of the test. More... | |
virtual Test * | getChildTestAt (int index) const |
Returns the child test of the specified index. More... | |
virtual bool | findTestPath (const std::string &testName, TestPath &testPath) const |
Finds the test with the specified name and its parents test. More... | |
virtual bool | findTestPath (const Test *test, TestPath &testPath) const |
Finds the specified test and its parents test. More... | |
virtual Test * | findTest (const std::string &testName) const |
Finds the test with the specified name in the hierarchy. More... | |
virtual TestPath | resolveTestPath (const std::string &testPath) const |
Resolved the specified test path with this test acting as 'root'. More... | |
Private Member Functions | |
TestComposite (const TestComposite &other) | |
TestComposite & | operator= (const TestComposite &other) |
virtual void | doStartSuite (TestResult *controller) |
virtual void | doRunChildTests (TestResult *controller) |
virtual void | doEndSuite (TestResult *controller) |
Private Attributes | |
const std::string | m_name |
Additional Inherited Members | |
![]() | |
virtual void | checkIsValidIndex (int index) const |
virtual Test * | doGetChildTestAt (int index) const =0 |
Returns the child test of the specified valid index. More... | |
A Composite of Tests.
Base class for all test composites. Subclass this class if you need to implement a custom TestSuite.
CPPUNIT_NS_BEGIN TestComposite::TestComposite | ( | const std::string & | name = "" ) |
TestComposite::~TestComposite | ( | ) |
|
private |
|
virtual |
|
privatevirtual |
|
privatevirtual |
|
privatevirtual |
|
virtual |
Returns the test name.
Each test has a name. This name may be used to find the test in a suite or registry of tests.
Implements Test.
Reimplemented in TestRunner::WrappingSuite.
|
private |
|
virtual |
|
private |
|
hosts this site. |
Send comments to: CppUnit Developers |