1#ifndef CPPUNIT_EXTENSIONS_TESTCASEDECORATOR_H
2#define CPPUNIT_EXTENSIONS_TESTCASEDECORATOR_H
#define CPPUNIT_API
Definition CppUnitApi.h:27
#define CPPUNIT_NS_END
Definition Portability.h:106
#define CPPUNIT_NS_BEGIN
Definition Portability.h:105
TestCaseDecorator(const TestCaseDecorator &)
TestCaseDecorator(TestCase *test)
Definition TestCaseDecorator.cpp:6
TestCaseDecorator & operator=(const TestCaseDecorator &)
TestCase * m_test
Definition TestCaseDecorator.h:33
void runTest()
FIXME: this should probably be pure virtual.
Definition TestCaseDecorator.cpp:41
void tearDown()
Clean up after the test run.
Definition TestCaseDecorator.cpp:34
void setUp()
Set up context before running a test.
Definition TestCaseDecorator.cpp:27
std::string getName() const
Returns the name of the test case.
Definition TestCaseDecorator.cpp:20
TestCase(const std::string &name)
Constructs a test case.
Definition TestCase.cpp:45