File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ v2 2015-04-02
2+
3+ * Improved compilation time performance. 20% drop in compilation time
4+ has been seen in some test programs.
5+
6+ * Improved the compiler's chance to provide good warning messages
7+ when values in expectations don't quite the types used in the
8+ function signature (for example signed/unsigned mismatch.)
9+
10+ * Added support for tracing matching calls. This is an aid when
11+ doing exploratory tests of legacy code. A trace can often
12+ drastically reduce the time required to understand how the legacy
13+ code works.
14+
15+ To use it, create an object of a tracer type, for example:
16+
17+ TEST(atest)
18+ {
19+ trompeloeil::stream_tracer trace(std::cout);
20+
21+ // normal test code
22+ }
23+
24+ v1 2015-01-10
25+
26+ First official release.
You can’t perform that action at this time.
0 commit comments