diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-08-29 21:26:01 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-08-29 21:26:01 +0000 |
| commit | 938c5ebcaed57a6652ae3f189bac55a1489ac478 (patch) | |
| tree | 5e1627ef2ff8b085bcb9f04a4cadf7a7a05bbd45 /include/cppunit | |
| parent | 93d20fcb3bfbfa1d20e435218b60e6ed768f57b7 (diff) | |
| download | cppunit-938c5ebcaed57a6652ae3f189bac55a1489ac478.tar.gz | |
Include/cppunit/TestResult.
include/cppunit/TestResult.h:
* src/cppunit/TestResult.cpp: fixed shouldStop() bug.
Diffstat (limited to 'include/cppunit')
| -rw-r--r-- | include/cppunit/TestResult.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/cppunit/TestResult.h b/include/cppunit/TestResult.h index ff3243b..4653102 100644 --- a/include/cppunit/TestResult.h +++ b/include/cppunit/TestResult.h @@ -57,7 +57,11 @@ public: virtual ~TestResult(); virtual void addListener( TestListener *listener ); + virtual void removeListener( TestListener *listener ); + + /// Resets the stop flag. + virtual void reset(); /// Stop testing virtual void stop(); |
