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.