Add more deprecations

This commit is contained in:
Martin Hořeňovský 2018-11-17 21:13:56 +01:00
parent c6a89f14c2
commit 77f29c2f1c
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 15 additions and 0 deletions

View File

@ -6,6 +6,8 @@
[`--list-*` command line parameters](#--list--command-line-parameters)<br> [`--list-*` command line parameters](#--list--command-line-parameters)<br>
[Types passed to the reporter interface](#types-passed-to-the-reporter-interface)<br> [Types passed to the reporter interface](#types-passed-to-the-reporter-interface)<br>
[Generators](#generators)<br> [Generators](#generators)<br>
[`ANON_TEST_CASE`](#anon_test_case)<br>
[Secondary description amongst tags](#secondary-description-amongst-tags)<br>
This page documents current deprecations and upcoming changes inside This page documents current deprecations and upcoming changes inside
Catch2. You can expect deprecated functionality to stick around until 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. 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) [Home](Readme.md#top)