From 100c2aa4190f0125daaa91f85eceac4c1637abb3 Mon Sep 17 00:00:00 2001 From: Robert Baumgartner <58933377+RobBa@users.noreply.github.com> Date: Mon, 23 Feb 2026 17:34:42 +0100 Subject: [PATCH] Update readme.md with unit test section --- readme.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/readme.md b/readme.md index 6c1623c..8c531f0 100644 --- a/readme.md +++ b/readme.md @@ -49,6 +49,17 @@ make ctest ``` +## Running Unit Tests + +Compile with building tests enabled: + +```bash +mkdir build && cd build +cmake -DBUILD_TESTS=On .. +make +ctest +``` + ## Required - Compiler capable of C++20 at least (we test with gcc 12.3.0)