From 0d0ea3c2936ce05fa3c2f12421a7e7a2a5b79e37 Mon Sep 17 00:00:00 2001 From: Yury Bayda Date: Sun, 2 Aug 2026 20:31:44 -0700 Subject: [PATCH] docs: document kata workflow --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 7caae2a..810f834 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,25 @@ and run the setup commands again. Setup is complete when CTest reports `100% tests passed`. +## Work on the kata + +1. Replace the starter assertions in `test_something.cpp` with the first kata test. + +2. Run the tests after each change. Use Make when it is installed: + + ```console + make test + ``` + + Otherwise, use CMake and CTest directly: + + ```console + cmake --build build --config Debug + ctest --test-dir build --build-config Debug --output-on-failure + ``` + + Continue when CTest reports `100% tests passed`. + ## Make command reference Make is optional. Run `make` or `make help` to list these commands in the