From 69e37c2eef5da52d70c60a388131df7be500e9cf Mon Sep 17 00:00:00 2001 From: philsquared Date: Wed, 10 Nov 2010 00:45:20 -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 541f5ad..19d0a77 100644 --- a/Home.md +++ b/Home.md @@ -11,6 +11,7 @@ There are a number of decent C++ unit testing frameworks out there, including (b Here's a list of core features of Catch that, collectively, make Catch stand out: * Implemented entirely in headers. Just #include "catch.hpp" and you're away. +* Minimal dependencies - just C++98 with basic STL. * Write test cases as functions or methods. Functions are self registering. * 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.