CppUnit project page FAQ

TextTestProgressListener.h
Go to the documentation of this file.
1#ifndef CPPUNIT_TEXTTESTPROGRESSLISTENER_H
2#define CPPUNIT_TEXTTESTPROGRESSLISTENER_H
3
5
6
8
9
15{
16public:
20
23
24 void startTest( Test *test );
25
26 void addFailure( const TestFailure &failure );
27
28 void endTestRun( Test *test,
29 TestResult *eventManager );
30
31private:
34
36 void operator =( const TextTestProgressListener &copy );
37
38private:
39};
40
41
43
44#endif // CPPUNIT_TEXTTESTPROGRESSLISTENER_H
#define CPPUNIT_API
Definition CppUnitApi.h:27
#define CPPUNIT_NS_END
Definition Portability.h:106
#define CPPUNIT_NS_BEGIN
Definition Portability.h:105
Record of a failed Test execution.
Definition TestFailure.h:25
Base class for all test objects.
Definition Test.h:26
Listener for test progress and result.
Definition TestListener.h:95
virtual void endTestRun(Test *, TestResult *)
Called by a TestRunner after running the test.
Definition TestListener.h:139
virtual void addFailure(const TestFailure &)
Called when a failure occurs while running a test.
Definition TestListener.h:107
virtual void startTest(Test *)
Called when just before a TestCase is run.
Definition TestListener.h:100
Manages TestListener.
Definition TestResult.h:48
TestListener that show the status of each TestCase test result.
Definition TextTestProgressListener.h:15
TextTestProgressListener(const TextTestProgressListener &copy)
Prevents the use of the copy constructor.

Send comments to:
CppUnit Developers