summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2002-12-02 18:45:54 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2002-12-02 18:45:54 +0000
commite2b784709cde0cd7040b4bfb3401869c6306bcc0 (patch)
tree01246b777f7300b5d94be5ac0df0d046874da76d /TODO
parentfaa78dac0e46eef7b529b7be7262f4610f04d432 (diff)
downloadcppunit-e2b784709cde0cd7040b4bfb3401869c6306bcc0.tar.gz
Include/cppunit/plugin/DynamicLibraryManagerException.
include/cppunit/plugin/DynamicLibraryManagerException.h: added constructor to fix compilation issues on recents version of gcc and sun CC (bug #619059) * include/cppunit/input/XmlInputHelper.h: added. * include/cppunit/extensions/TestSuiteBuilderContext.h: * src/cppunit/TestSuiteBuilderContext.cpp: added addProperty() and getStringProperty(). Added macros CPPUNIT_TEST_SUITE_PROPERTY. * src/msvc6/testrunner/TestRunnerDlg.cpp: integrated Tim Threlkeld's bug fix #610162: browse button was disabled if history was empty. * src/msvc6/testrunner/DynamicWindow/cdxCSizeIconCtrl.cpp: integrated Tim Threlkeld's bug fix #610191: common control were not initialized. * include/cppunit/extensions/ExceptionTestCaseDecorator.h: bug #603172, missing Message construction. * src/cppunit/DefaultProtector.cpp: bug #603172. Fixed missing ';'. * src/cppunit/TestCase.cpp: bug #603671. Removed unguarded typeinfo include. * examples/cppunittests/*Suite.h: bug #603666. Added missing Portability.h include.
Diffstat (limited to 'TODO')
-rw-r--r--TODO16
1 files changed, 3 insertions, 13 deletions
diff --git a/TODO b/TODO
index 25dfbd3..8776334 100644
--- a/TODO
+++ b/TODO
@@ -1,17 +1,7 @@
+* Bugs:
+Asserter::makeNotEqualMessage() strip the shortDescription of the additional message.
+
* CppUnit:
- - Provide a mean for the user to catch 'custom' exception in TestCase::run
- (exception that do not subclass std::exception, such as MFC CException, or
- RogueWave RWXMsg).
- - [DONE] Custom Test macro helper
- - [DONE] Hook for XmlOutputter, to allow user to add extra information to the XmlDocument
- (test & doc level).
- - [DONE] Allow test plug-in to 'hook' the XmlOutputter when used.
- - TextUi::TestRunner should use CppUnit::TestRunner as a base class
- - [DONE] Make Exception message more flexible: introduce a Message object which contains:
- - a short description ('assertion failed', 'equality assertion failed'...)
- - detail strings: "Expected : 3", "Actual : 5"...
- => this provide a structured way to specify failure details, and let the ouputter
- (or ui) format them for display.
- Extends CompilerOutputter to a generic text outputter that can use a format string
to display both the location of the failure and the message.
- STL concept checker.