Blame TODO

Packit 8c9aa0
* Bugs:
Packit 8c9aa0
Asserter::makeNotEqualMessage() strip the shortDescription of the additional message.
Packit 8c9aa0
Packit 8c9aa0
* CppUnit:
Packit 8c9aa0
  - STL concept checker.
Packit 8c9aa0
  - Memory leak tracking: setUp/tearDown should be leak safe if no failure occured.
Packit 8c9aa0
Packit 8c9aa0
* UnitTest
Packit 8c9aa0
  - add tests for XmlOutputter::setStyleSheet (current assertion macro strip  when
Packit 8c9aa0
    testing )
Packit 8c9aa0
Packit 8c9aa0
* VC++ TestRunner:
Packit 8c9aa0
  - Modify MfcUi::TestRunner to expose TestResult (which allow specific TestListener
Packit 8c9aa0
    for global initialization).
Packit 8c9aa0
  - Update MfcTestRunner to use TestPath to store test in the registry
Packit 8c9aa0
    
Packit 8c9aa0
* Documentation:
Packit 8c9aa0
	CookBook:
Packit 8c9aa0
	- how to create simple test cases (with CppUnit namespace)
Packit 8c9aa0
	  - test case using only CPPUINT_ASSERT
Packit 8c9aa0
	  - test case using CPPUNIT_ASSERT_EQUAL
Packit 8c9aa0
	  - advanced assertions with the CPPUNIT_ASSERT_MESSAGE
Packit 8c9aa0
	- Helper Macros for convenience
Packit 8c9aa0
	- Creating a suite
Packit 8c9aa0
	- Composing a suite from more suites (i.e. compose tests for n modules to
Packit 8c9aa0
	  form a big test for the whole program)
Packit 8c9aa0
	- customizing output using an user defined TestListener
Packit 8c9aa0
	  - how to write the TestListener (subclass of TestListener)
Packit 8c9aa0
	  - how to hook it in
Packit 8c9aa0
	- how to use the GUI
Packit 8c9aa0
	  - MSVC++ special stuff
Packit 8c9aa0
	- other custmization stuff I haven't understood yet
Packit 8c9aa0
Packit 8c9aa0
	CppUnit: architecture overview.
Packit 8c9aa0