From 95cd95e591696bee5fbf24cf5b3a1610b4d05e3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sat, 15 Oct 2022 23:41:51 +0200 Subject: [PATCH] Add extra explanations to some items in docs/readme.md This should make it easier for people to find what they need, e.g. finding generators by looking for "value parameterized tests". --- docs/Readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Readme.md b/docs/Readme.md index a6a73b798b..4cbcb651ab 100644 --- a/docs/Readme.md +++ b/docs/Readme.md @@ -6,14 +6,14 @@ Once you're up and running consider the following reference material. **Writing tests:** * [Assertion macros](assertions.md#top) -* [Matchers](matchers.md#top) +* [Matchers (asserting complex properties)](matchers.md#top) * [Comparing floating point numbers](comparing-floating-point-numbers.md#top) * [Logging macros](logging.md#top) * [Test cases and sections](test-cases-and-sections.md#top) * [Test fixtures](test-fixtures.md#top) -* [Reporters](reporters.md#top) +* [Reporters (output customization)](reporters.md#top) * [Event Listeners](event-listeners.md#top) -* [Data Generators](generators.md#top) +* [Data Generators (value parameterized tests)](generators.md#top) * [Other macros](other-macros.md#top) * [Micro benchmarking](benchmarks.md#top)