1#ifndef CPPUNIT_TESTSUITE_H
2#define CPPUNIT_TESTSUITE_H
6#if CPPUNIT_NEED_DLL_DECL
8#pragma warning( disable: 4251 )
17#if CPPUNIT_NEED_DLL_DECL
76#if CPPUNIT_NEED_DLL_DECL
#define CPPUNIT_API
Definition CppUnitApi.h:27
#define CppUnitVector
Definition CppUnitVector.h:20
#define CPPUNIT_NS_END
Definition Portability.h:120
#define CPPUNIT_NS_BEGIN
Definition Portability.h:119
TestComposite(const std::string &name="")
Definition TestComposite.cpp:8
Base class for all test objects.
Definition Test.h:26
virtual int getChildTestCount() const =0
Returns the number of direct child of the test.
virtual Test * doGetChildTestAt(int index) const =0
Returns the child test of the specified valid index.
CppUnitVector< Test * > m_tests
Definition TestSuite.h:70
const CppUnitVector< Test * > & getTests() const
Definition TestSuite.cpp:43
virtual void deleteContents()
Deletes all tests in the suite.
Definition TestSuite.cpp:24
TestSuite(std::string name="")
Default constructor.
Definition TestSuite.cpp:9
void addTest(Test *test)
Adds a test to the suite.
Definition TestSuite.cpp:36