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/assertions.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ Most test frameworks have a large collection of assertion macros to capture all

Catch is different. Because it decomposes natural C-style conditional expressions most of these forms are reduced to one or two that you will use all the time. That said there is a rich set of auxiliary macros as well. We'll describe all of these here.

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

Most of these macros come in two forms:

## Natural Expressions
Expand Down