summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2002-06-14 10:12:17 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2002-06-14 10:12:17 +0000
commitf39e160fba25476de7d41e2f19d756db7ee76dc7 (patch)
tree6abf2725b94c754023bc8408ad0e53463bc7caed /TODO
parent6b57ee7236610cc5ac9e388bb73be1854429a27b (diff)
downloadcppunit-f39e160fba25476de7d41e2f19d756db7ee76dc7.tar.gz
Src/cppunit/TypeInfoHelper.
src/cppunit/TypeInfoHelper.cpp: added work around for bug #565481. gcc 3.0 RTTI name() returns the type prefixed with a number (the length of the type). The work around strip the number. * src/msvc6/testpluginrunner/TestPlugInRunnerApp.cpp: registry key is now set. Allow to save settings. * src/msvc6/testpluginrunner/TestPlugInRunnerDlg.h: * src/msvc6/testpluginrunner/TestPlugInRunnerDlg.cpp: added layout initialization for resizing. * src/msvc6/testpluginrunner/TestPlugRunner.rc: * src/msvc6/testpluginrunner/TestPlugInRunner.dsp: added TestRunner project files. Somehow I can't get cdxCDynamicDialog to compile as a MFC extension. Included all sources files and resources as a very dirt work around. * src/msvc6/testrunner/TestRunnerDlg.h: * src/msvc6/testrunner/TestRunnerDlg.cpp: * src/msvc6/testrunner/TestRunnerModel.h: those classes are no longer exported in the MFC extension. See TestPlugInRunner issue with cdxCDynamicDialog. * include/cppunit/Message.h: * include/cppunit/TestPath.h: * include/cppunit/TestResult.h: * include/cppunit/TestResultCollector.h: * include/cppunit/TestSuite.h: * include/cppunit/TestFactoryRegistry.h: * include/cppunit/XmlElement.h: * include/cppunit/TypeInfoHelper.h: commented out STL template export in DLL. This caused conflicts when instantiting the same template in a user project.
Diffstat (limited to 'TODO')
-rw-r--r--TODO7
1 files changed, 2 insertions, 5 deletions
diff --git a/TODO b/TODO
index faef707..c7f0b99 100644
--- a/TODO
+++ b/TODO
@@ -10,7 +10,7 @@
- TextUi::TestRunner should use CppUnit::TestRunner as a base class
- Modify MfcUi::TestRunner to expose TestResult (which allow specific TestListener
for global initialization).
- - [DONE]Make Exception message more flexible: introduce a Message object which contains:
+ - [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
@@ -27,10 +27,7 @@
- add tests for test plug-in
* VC++ TestRunner:
- - Make it possible to specify the registry path where settings are stored.
- Current method use the path defined in the CWinApp. This does not work
- for console application
- - Add "details" field to show detail of the selected failed test:
+ - [DONE] Add "details" field to show detail of the selected failed test:
- suite and test name,
- failure message. If possible separate "was" and "expected" in the
forthcoming assertEquals() to make comparison easier,