From 075ffba6dc24b8262c3581d8aab3aef2cae45026 Mon Sep 17 00:00:00 2001 From: Xenofon Karamanos Date: Wed, 3 Jan 2024 13:00:15 +0200 Subject: [PATCH] Add named suite example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc0a8a6b..2f1769fe 100644 --- a/README.md +++ b/README.md @@ -642,7 +642,7 @@ All tests passed (3 asserts in 3 tests) > `tests` defined inside will be automatically registered 👍 ```cpp -suite errors = [] { +suite errors = [] { // or suite<"nameofsuite"> "exception"_test = [] { expect(throws([] { throw 0; })) << "throws any exception"; };