CppUnit project page FAQ

TestRunner.h
Go to the documentation of this file.
1#ifndef CPPUNIT_TESTRUNNER_H
2#define CPPUNIT_TESTRUNNER_H
3
4#include <cppunit/TestSuite.h>
5#include <string>
6
8
9
10class Test;
11class TestResult;
12
13
73{
74public:
77 TestRunner( );
78
80 virtual ~TestRunner();
81
85 virtual void addTest( Test *test );
86
94 virtual void run( TestResult &controller,
95 const std::string &testPath = "" );
96
97protected:
101 {
102 public:
103 WrappingSuite( const std::string &name = "All Tests" );
104
105 int getChildTestCount() const;
106
107 std::string getName() const;
108
109 void run( TestResult *result );
110
111 protected:
112 Test *doGetChildTestAt( int index ) const;
113
114 bool hasOnlyOneTest() const;
115
116 Test *getUniqueChildTest() const;
117 };
118
119protected:
121
122private:
124 TestRunner( const TestRunner &copy );
125
127 void operator =( const TestRunner &copy );
128
129private:
130};
131
132
134
135#endif // CPPUNIT_TESTRUNNER_H
#define CPPUNIT_API
Definition: CppUnitApi.h:27
#define CPPUNIT_NS_END
Definition: Portability.h:106
#define CPPUNIT_NS_BEGIN
Definition: Portability.h:105
Base class for all test objects.
Definition: Test.h:26
Manages TestListener.
Definition: TestResult.h:48
(INTERNAL) Mutating test suite.
Definition: TestRunner.h:101
Generic test runner.
Definition: TestRunner.h:73
TestRunner(const TestRunner &copy)
Prevents the use of the copy constructor.
WrappingSuite * m_suite
Definition: TestRunner.h:120
A Composite of Tests.
Definition: TestSuite.h:41

Send comments to:
CppUnit Developers