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
59 const std::vector<Test *> &
getTests()
const;
76#if CPPUNIT_NEED_DLL_DECL
#define CPPUNIT_API
Definition CppUnitApi.h:27
#define CPPUNIT_NS_END
Definition Portability.h:106
#define CPPUNIT_NS_BEGIN
Definition Portability.h:105
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.
virtual void deleteContents()
Deletes all tests in the suite.
Definition TestSuite.cpp:25
TestSuite(std::string name="")
Default constructor.
Definition TestSuite.cpp:9
void addTest(Test *test)
Adds a test to the suite.
Definition TestSuite.cpp:37
const std::vector< Test * > & getTests() const
Definition TestSuite.cpp:44
std::vector< Test * > m_tests
Definition TestSuite.h:70