Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/test-cases-and-sections.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ While Catch fully supports the traditional, xUnit, style of class-based fixtures

Instead Catch provides a powerful mechanism for nesting test case sections within a test case. For a more detailed discussion see the [tutorial](tutorial.md#test-cases-and-sections).

To use the macros described on this page, include:
```cpp
#include <catch2/catch_test_macros.hpp>
```

Test cases and sections are very easy to use in practice:

* **TEST_CASE(** _test name_ \[, _tags_ \] **)**
Expand Down