CppUnit project page FAQ

TestComposite.h
Go to the documentation of this file.
1 #ifndef CPPUNIT_TESTCOMPSITE_H // -*- C++ -*-
2 #define CPPUNIT_TESTCOMPSITE_H
3 
4 #include <cppunit/Test.h>
5 #include <string>
6 
8 
9 
18 {
19 public:
20  TestComposite( const std::string &name = "" );
21 
22  ~TestComposite();
23 
24  void run( TestResult *result );
25 
26  int countTestCases() const;
27 
28  std::string getName() const;
29 
30 private:
31  TestComposite( const TestComposite &other );
32  TestComposite &operator =( const TestComposite &other );
33 
34  virtual void doStartSuite( TestResult *controller );
35  virtual void doRunChildTests( TestResult *controller );
36  virtual void doEndSuite( TestResult *controller );
37 
38 private:
39  const std::string m_name;
40 };
41 
42 
44 
45 #endif // CPPUNIT_TESTCOMPSITE_H
CPPUNIT_API
#define CPPUNIT_API
Definition: CppUnitApi.h:27
TestComposite
A Composite of Tests.
Definition: TestComposite.h:18
Test::countTestCases
virtual int countTestCases() const =0
Return the number of test cases invoked by run().
Test::getName
virtual std::string getName() const =0
Returns the test name.
Test.h
CPPUNIT_NS_BEGIN
#define CPPUNIT_NS_BEGIN
Definition: Portability.h:105
CPPUNIT_NS_END
#define CPPUNIT_NS_END
Definition: Portability.h:106
TestComposite::TestComposite
TestComposite(const TestComposite &other)
Test
Base class for all test objects.
Definition: Test.h:26
Test::run
virtual void run(TestResult *result)=0
Run the test, collecting results.
TestResult
Manages TestListener.
Definition: TestResult.h:48
TestComposite::m_name
const std::string m_name
Definition: TestComposite.h:39

Send comments to:
CppUnit Developers