From 8898cc61601af6cdd5b4548dd91ccf70ed67f3c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Mon, 5 Aug 2024 20:13:03 +0200 Subject: [PATCH] Mark non-const function for TEST_CASE_METHOD as deprecated --- docs/deprecations.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/deprecations.md b/docs/deprecations.md index 1fb79aaa0f..0b5bee1355 100644 --- a/docs/deprecations.md +++ b/docs/deprecations.md @@ -35,6 +35,19 @@ being aborted (when using `--abort` or `--abortx`). It is however **NOT** invoked for test cases that are [explicitly skipped using the `SKIP` macro](skipping-passing-failing.md#top). + +### Non-const function for `TEST_CASE_METHOD` + +> Deprecated in Catch2 vX.Y.Z + +Currently, the member function generated for `TEST_CASE_METHOD` is +not `const` qualified. In the future, the generated member function will +be `const` qualified, just as `TEST_CASE_PERSISTENT_FIXTURE` does. + +If you are mutating the fixture instance from within the test case, and +want to keep doing so in the future, mark the mutated members as `mutable`. + + --- [Home](Readme.md#top)