| 
Public Member Functions | 
|  | TestCase (const std::string &name) | 
|  | Constructs a test case. 
 | 
|  | TestCase () | 
|  | Constructs a test case for a suite. 
 | 
|  | ~TestCase () | 
|  | Destructs a test case. 
 | 
| virtual void | run (TestResult *result) | 
|  | Run the test and catch any exceptions that are triggered by it. 
 | 
| std::string | getName () const | 
|  | Returns the name of the test case. 
 | 
| virtual void | runTest () | 
|  | FIXME: this should probably be pure virtual. 
 | 
| int | countTestCases () const | 
| int | getChildTestCount () const | 
| Test * | doGetChildTestAt (int index) const | 
| virtual | ~Test () | 
| virtual Test * | getChildTestAt (int index) const | 
|  | Returns the child test of the specified index. 
 | 
| virtual bool | findTestPath (const std::string &testName, TestPath &testPath) const | 
|  | Finds the test with the specified name and its parents test. 
 | 
| virtual bool | findTestPath (const Test *test, TestPath &testPath) const | 
|  | Finds the specified test and its parents test. 
 | 
| virtual Test * | findTest (const std::string &testName) const | 
|  | Finds the test with the specified name in the hierarchy. 
 | 
| virtual TestPath | resolveTestPath (const std::string &testPath) const | 
|  | Resolved the specified test path with this test acting as 'root'. 
 | 
| virtual | ~TestFixture () | 
| virtual void | setUp () | 
|  | Set up context before running a test. 
 | 
| virtual void | tearDown () | 
|  | Clean up after the test run. 
 | 
A single test object. 
This class is used to implement a simple test case: define a subclass that overrides the runTest method.
You don't usually need to use that class, but TestFixture and TestCaller instead.
You are expected to subclass TestCase is you need to write a class similiar to TestCaller.