From 683c85772f65a8779e3baf45d3402098db58bb8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 12 Jul 2023 11:49:43 +0200 Subject: [PATCH] Clean up explanation in tests --- ...tionStartingEventGoesBeforeAssertionIsEvaluated.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tests/ExtraTests/X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp b/tests/ExtraTests/X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp index ef5b46b9..6f44bf69 100644 --- a/tests/ExtraTests/X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp +++ b/tests/ExtraTests/X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp @@ -7,11 +7,10 @@ // SPDX-License-Identifier: BSL-1.0 /**\file - * TODO: FIXES Registers custom reporter that reports testCase* events + * Registers an event listener to increments counter of assertionStarting events. * - * The resulting executable can then be used by an external Python script - * to verify that testCase{Starting,Ended} and testCasePartial{Starting,Ended} - * events are properly nested. + * Different assertion macros then check that the counter is at expected + * value when they are evaluated. */ #include @@ -23,9 +22,6 @@ namespace { static size_t assertion_starting_events_seen = 0; - // TODO: custom matcher to check that "assertion_starting_events_seen" has - // the right number of checks - class AssertionStartingListener : public Catch::EventListenerBase { public: AssertionStartingListener( Catch::IConfig const* config ):