From 77f29c2f1cde8bd2e17f06cc04092b990d2acc2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sat, 17 Nov 2018 21:13:56 +0100 Subject: [PATCH] Add more deprecations --- docs/deprecations.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/deprecations.md b/docs/deprecations.md index 1e9e3367..3a4144de 100644 --- a/docs/deprecations.md +++ b/docs/deprecations.md @@ -6,6 +6,8 @@ [`--list-*` command line parameters](#--list--command-line-parameters)
[Types passed to the reporter interface](#types-passed-to-the-reporter-interface)
[Generators](#generators)
+[`ANON_TEST_CASE`](#anon_test_case)
+[Secondary description amongst tags](#secondary-description-amongst-tags)
This page documents current deprecations and upcoming changes inside Catch2. You can expect deprecated functionality to stick around until @@ -45,6 +47,19 @@ The current generator interface is not intended to be stable and will be changed. +## `ANON_TEST_CASE` + +`ANON_TEST_CASE` is scheduled for removal, as it can be fully replaced +by a `TEST_CASE` with no arguments. + + +## Secondary description amongst tags + +Currently, the tags part of `TEST_CASE` (and others) macro can also +contain text that is not part of tags. As it is not actually documented, +or used, it will be removed. + + --- [Home](Readme.md#top)