From 13213faa4e1c6dd9b9883ab4cd570d6550fbd43a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 30 Aug 2017 12:43:23 +0200 Subject: [PATCH] Update release notes in regards to CATCH_CONFIG_DISABLE --- docs/release-notes.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index c7d47983..aa8f4957 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -36,11 +36,14 @@ * All parts of matchers can be removed from a TU by defining `CATCH_CONFIG_DISABLE_MATCHERS` * This can be used to somewhat speed up compilation times * An experimental implementation of `CATCH_CONFIG_DISABLE` has been added - * Speeds up compilation by removing away Catch tests - * Currently removes all assertions and prevents `TEST_CASE` registrations + * Inspired by Doctest's `DOCTEST_CONFIG_DISABLE` * Useful for implementing tests in source files * ie for functions in anonymous namespaces - * Inspired by Doctest's `DOCTEST_CONFIG_DISABLE` + * Removes all assertions + * Prevents `TEST_CASE` registrations + * Exception translators are not registered + * Reporters are not registered + * Listeners are not registered ## Fixes