summaryrefslogtreecommitdiff
path: root/include/cppunit/TestResult.h
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2002-03-25 21:35:34 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2002-03-25 21:35:34 +0000
commit1670f83c25440fbf021da923b63f24d724a3d0f7 (patch)
tree3e40888682c53e878b548b1092065a6ea022de25 /include/cppunit/TestResult.h
parent38e67ef2e0084b295fc666df4f71bdeb08d87740 (diff)
downloadcppunit-1670f83c25440fbf021da923b63f24d724a3d0f7.tar.gz
Include/cppunit/makefile.
include/cppunit/makefile.am: removed TestRegistry.h * include/cppunit/TestRegistry.h: removed. Obsolete, replaced by TestFactoryRegistry. * src/cppunit/makefile.am: removed TestRegistry.cpp. Added cppunit_dll.dsp. * include/cppunit/CompilerOutputter.h: * include/cppunit/NotEqualException.h: * include/cppunit/SynchronizedObject.h: * include/cppunit/TestFixture.h: * include/cppunit/TestListener.h: * include/cppunit/TestResult.h: * include/cppunit/TestSucessListener.h: * include/cppunit/TextOutputter.h: * include/cppunit/TextTestProgressListener.h: * include/cppunit/TextTestResult.h: * include/cppunit/XmlOutputter.h: * include/cppunit/extensions/TestFactory.h: * include/cppunit/extensions/TestFactoryRegistry.h: * include/cppunit/extensions/TestSuiteBuilder.h: * include/cppunit/extensions/TestSuiteFactory.h: minor doc update. * include/cppunit/TestFixture.h: added DLL export. * include/cppunit/msvc6/TestPlugInInterface.h: updated doc. Added automatic exportation of TestPlugIn publishing function. * src/cppunit/TestCase.cpp: * include/cppunit/TestCase.h: inherits setUp() and tearDown() from class TestFixture.
Diffstat (limited to 'include/cppunit/TestResult.h')
-rw-r--r--include/cppunit/TestResult.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/cppunit/TestResult.h b/include/cppunit/TestResult.h
index 4d504e2..ecfd25d 100644
--- a/include/cppunit/TestResult.h
+++ b/include/cppunit/TestResult.h
@@ -22,9 +22,7 @@ class TestListener;
template class CPPUNIT_API std::deque<TestListener *>;
#endif
-/**
- * A TestResult collects the results of executing a test case. It is an
- * instance of the Collecting Parameter pattern.
+/*! Manages TestListener.
*
* FIXME: NEED UPDATE (main responsibilty is to act as an event manager)
*
@@ -33,11 +31,11 @@ class TestListener;
* unanticipated problems signified by exceptions that are not generated
* by the framework.
*
- * TestResult supplies a template method 'setSynchronizationObject ()'
+ * TestResult supplies a template method 'setSynchronizationObject()'
* so that subclasses can provide mutual exclusion in the face of multiple
* threads. This can be useful when tests execute in one thread and
* they fill a subclass of TestResult which effects change in another
- * thread. To have mutual exclusion, override setSynchronizationObject ()
+ * thread. To have mutual exclusion, override setSynchronizationObject()
* and make sure that you create an instance of ExclusiveZone at the
* beginning of each method.
*