1#ifndef CPPUNIT_BRIEFTESTPROGRESSLISTENER_H
2#define CPPUNIT_BRIEFTESTPROGRESSLISTENER_H
#define CPPUNIT_API
Definition CppUnitApi.h:27
#define CPPUNIT_NS_END
Definition Portability.h:106
#define CPPUNIT_NS_BEGIN
Definition Portability.h:105
BriefTestProgressListener()
Definition BriefTestProgressListener.cpp:10
void addFailure(const TestFailure &failure)
Called when a failure occurs while running a test.
Definition BriefTestProgressListener.cpp:32
void endTest(Test *test)
Called just after a TestCase was run (even if a failure occured).
Definition BriefTestProgressListener.cpp:40
BriefTestProgressListener(const BriefTestProgressListener ©)
Prevents the use of the copy constructor.
void startTest(Test *test)
Called when just before a TestCase is run.
Definition BriefTestProgressListener.cpp:22
bool m_lastTestFailed
Definition BriefTestProgressListener.h:37
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