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 
   52  void addTest( 
Test *test );
 
   59  const std::vector<Test *> &getTests() 
const;
 
   63  virtual void deleteContents();
 
 
   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
A Composite of Tests.
Definition TestComposite.h:18
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.
A Composite of Tests.
Definition TestSuite.h:41
std::vector< Test * > m_tests
Definition TestSuite.h:70