CppUnit project page | FAQ |
#include <Orthodox.h>
Public Member Functions | |
Orthodox () | |
![]() | |
TestCase (const std::string &name) | |
Constructs a test case. More... | |
TestCase () | |
Constructs a test case for a suite. More... | |
~TestCase () | |
Destructs a test case. More... | |
virtual void | run (TestResult *result) |
Run the test and catch any exceptions that are triggered by it. More... | |
std::string | getName () const |
Returns the name of the test case. More... | |
virtual void | runTest () |
FIXME: this should probably be pure virtual. More... | |
![]() | |
int | countTestCases () const |
int | getChildTestCount () const |
Test * | doGetChildTestAt (int index) const |
![]() | |
virtual | ~Test () |
virtual void | run (TestResult *result)=0 |
Run the test, collecting results. More... | |
virtual int | countTestCases () const =0 |
Return the number of test cases invoked by run(). More... | |
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 std::string | getName () const =0 |
Returns the test name. 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... | |
![]() | |
virtual | ~TestFixture () |
virtual void | setUp () |
Set up context before running a test. More... | |
virtual void | tearDown () |
Clean up after the test run. More... | |
Protected Member Functions | |
ClassUnderTest | call (ClassUnderTest object) |
void | runTest () |
FIXME: this should probably be pure virtual. More... | |
![]() | |
virtual void | checkIsValidIndex (int index) const |
virtual Test * | doGetChildTestAt (int index) const =0 |
Returns the child test of the specified valid index. More... | |
|
inline |
|
protected |
|
protectedvirtual |
FIXME: this should probably be pure virtual.
All the work for runTest is deferred to subclasses.
Reimplemented from TestCase.
Send comments to: CppUnit Developers |