1 #ifndef CPPUNIT_TESTCOMPSITE_H // -*- C++ -*- 2 #define CPPUNIT_TESTCOMPSITE_H 34 virtual void doStartSuite(
TestResult *controller );
35 virtual void doRunChildTests(
TestResult *controller );
36 virtual void doEndSuite(
TestResult *controller );
45 #endif // CPPUNIT_TESTCOMPSITE_H A Composite of Tests.
Definition: TestComposite.h:17
Manages TestListener.A single instance of this class is used when running the test. It is usually created by the test runner (TestRunner).
Definition: TestResult.h:47
virtual int countTestCases() const =0
Return the number of test cases invoked by run().
Base class for all test objects.All test objects should be a subclass of Test. Some test objects...
Definition: Test.h:25
virtual std::string getName() const =0
Returns the test name.
#define CPPUNIT_NS_END
Definition: Portability.h:106
#define CPPUNIT_NS_BEGIN
Definition: Portability.h:105
virtual void run(TestResult *result)=0
Run the test, collecting results.
#define CPPUNIT_API
Definition: CppUnitApi.h:27
const std::string m_name
Definition: TestComposite.h:39