From c0d55aa32810c640dc165d85e545960244e1a048 Mon Sep 17 00:00:00 2001 From: Nessan Date: Sun, 26 Oct 2025 15:30:49 +0000 Subject: [PATCH] Add Doxytest to the list of tools in README Doxytest is a tool that extracts test code from documentation, for example, from comments before a method or a class. Rust's doctests are the inspiration for Doxytest. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d124311fa..cca0c7c00 100644 --- a/README.md +++ b/README.md @@ -500,6 +500,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [dbg-macro](https://github.com/sharkdp/dbg-macro) - A dbg(…) macro for C++. [MIT] * [DebugViewPP](https://github.com/CobaltFusion/DebugViewPP) - Debug logging viewer. [Boost] * [Deleaker](http://www.deleaker.com) - A tool for resource leak detection, including memory, GDI and handle leaks. +* [Doxytest](https://github.com/nessan/doxytest) - Extract test code from documentation -- Rust-style doctests for C++. [MIT] * [FakeIt](https://github.com/eranpeer/FakeIt) - Simple mocking framework for C++. [MIT] * [fff](https://github.com/meekrosoft/fff) - A micro-framework for creating fake C functions. [MIT] * [Google Mock](https://github.com/google/googletest/blob/master/googlemock/README.md) - A library for writing and using C++ mock classes. [BSD]