From 8ceab275dc0402a36f61c3981ccb372803e4f487 Mon Sep 17 00:00:00 2001 From: philsquared Date: Mon, 27 Dec 2010 13:06:27 -0800 Subject: [PATCH] Updated What's the CATCH? (markdown) --- Catch-for-Objective-C.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Catch-for-Objective-C.md b/Catch-for-Objective-C.md index c3f4126..cbf473a 100644 --- a/Catch-for-Objective-C.md +++ b/Catch-for-Objective-C.md @@ -16,6 +16,7 @@ Here's a list of core features of Catch that, collectively, make Catch stand out * No external dependencies. * Write test cases as standalone functions or Objective-C methods. * All test cases are self registering. +* Failures can (optionally) break into the debugger. * 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++/Objective-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.