From c635144809fe7420f55123f8fc6116a9d3ea86e6 Mon Sep 17 00:00:00 2001 From: philsquared Date: Mon, 27 Dec 2010 13:05:57 -0800 Subject: [PATCH] Updated What's the CATCH? (markdown) --- Home.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Home.md b/Home.md index 887bd48..5a2af76 100644 --- a/Home.md +++ b/Home.md @@ -15,6 +15,7 @@ Here's a list of core features of Catch that, collectively, make Catch stand out * Minimal dependencies - just C++03 with basic STL. * Write test cases as functions or methods. * All test cases are self registering (even for methods). +* Failures can (optionally) break into the debugger on Windows and Mac. * No context to pass around. Call through non test code and back into test code and assertions still work (useful for mocks) * Only one core assertion macro for comparisons. Standard C/C++ operators are used for the comparison - yet the full expression is decomposed and lhs and rhs values are logged. * Tests are named hierarchically and can be run by matching the entire name or partially to provide one way of grouping tests.