-
To avoid losing std::exception::what() info when an expression inside CHECK() or the operator==() itself throw it seems more user-friendly to retain what() message as the cause of failure. See dev list discussion thread "chaining exceptions in CHECK_*** macros?".
The patch generates the original failure message followed by ", cause: " + e.what() and is relative to...
2009-12-20 18:37:09 UTC in UnitTest++
-
Attaching sources modified to contain no boost dependency. Functionality is essentially the same. The most visible change is that the regex filter has been replaced with a *,?-wildcard matcher. In vast majority of the cases, this is quite sufficient for rich slicing and dicing of a test suite.
All source files are pure additions to the current unittest++ trunk. A modified Makefile is also...
2009-11-23 04:49:04 UTC in UnitTest++
-
Actual code upload following up on the offer discussed in the devel list around Oct 19, 2009: https://sourceforge.net/mailarchive/forum.php?thread_name=cb2f14800910211013p1e2e1c32scdfd161205e21940%40mail.gmail.com&forum_name=unittest-cpp-devel
Just in case, I quote my original email:
I have some working code that I would to like to add to the UnitTest++ codebase. It is 4 files providing...
2009-11-20 02:17:49 UTC in UnitTest++