From b3ece7e75d6b1983ab711151190f9a3a2b6e6e2e Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 21 Aug 2014 07:22:35 +0100 Subject: [PATCH] Tweaked wording around ability to do BDD --- docs/why-catch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/why-catch.md b/docs/why-catch.md index 2b08edc5..d90ee012 100644 --- a/docs/why-catch.md +++ b/docs/why-catch.md @@ -10,7 +10,7 @@ So what does Catch bring to the party that differentiates it from these? Apart f * No external dependencies. As long as you can compile C++98 and have a C++ standard library available. * Write test cases as, self-registering, functions or methods. * Divide test cases into sections, each of which is run in isolation (eliminates the need for fixtures!) -* Use BDD-style GIVEN-WHEN-THEN in place of test cases and sections. +* Use BDD-style Given-When-Then sections as well as traditional unit test cases. * 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. ## Other core features