From d1394a70649d5a0f8ff42c3a90701a557a9b85fe Mon Sep 17 00:00:00 2001 From: Sam Cunliffe Date: Wed, 12 Oct 2022 10:17:50 +0100 Subject: [PATCH] Link to SECTIONS doc at top of test fixtures page. I came here looking for a way to use a fixture. But what I really wanted was better done in the SECTION macro. Feels like a link right at the top would've made it clearer faster. --- docs/test-fixtures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/test-fixtures.md b/docs/test-fixtures.md index e4747c269c..21e4ea31ac 100644 --- a/docs/test-fixtures.md +++ b/docs/test-fixtures.md @@ -3,7 +3,7 @@ ## Defining test fixtures -Although Catch allows you to group tests together as sections within a test case, it can still be convenient, sometimes, to group them using a more traditional test fixture. Catch fully supports this too. You define the test fixture as a simple structure: +Although Catch allows you to group tests together as [sections within a test case](test-cases-and-sections.md), it can still be convenient, sometimes, to group them using a more traditional test fixture. Catch fully supports this too. You define the test fixture as a simple structure: ```c++ class UniqueTestsFixture {