1#ifndef CPPUNIT_EXTENSIONS_TESTDECORATOR_H
2#define CPPUNIT_EXTENSIONS_TESTDECORATOR_H
#define CPPUNIT_API
Definition CppUnitApi.h:27
#define CPPUNIT_NS_END
Definition Portability.h:106
#define CPPUNIT_NS_BEGIN
Definition Portability.h:105
TestDecorator(const TestDecorator &)
std::string getName() const
Returns the test name.
Definition TestDecorator.cpp:33
Test * m_test
Definition TestDecorator.h:38
void run(TestResult *result)
Run the test, collecting results.
Definition TestDecorator.cpp:26
int countTestCases() const
Return the number of test cases invoked by run().
Definition TestDecorator.cpp:19
Test * doGetChildTestAt(int index) const
Returns the child test of the specified valid index.
Definition TestDecorator.cpp:47
int getChildTestCount() const
Returns the number of direct child of the test.
Definition TestDecorator.cpp:40
TestDecorator(Test *test)
Definition TestDecorator.cpp:6
Base class for all test objects.
Definition Test.h:26
Manages TestListener.
Definition TestResult.h:48