From 0ff9399d9dfcb7a31af287a9c5f1a293fbc5bf0c Mon Sep 17 00:00:00 2001 From: DrishtiTripathi2230 Date: Sun, 17 May 2026 15:32:51 +0530 Subject: [PATCH] docs: add missing v3 include to assertions.md --- docs/assertions.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/assertions.md b/docs/assertions.md index f3dcdd484f..e76309f3ed 100644 --- a/docs/assertions.md +++ b/docs/assertions.md @@ -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 +``` + Most of these macros come in two forms: ## Natural Expressions