Joakim Thorén

Results 2 comments of Joakim Thorén

_Test Explorer_ in Visual Studio 2019 [has support for CTest](https://docs.microsoft.com/en-us/visualstudio/test/how-to-use-ctest-for-cpp?view=vs-2019#to-run-tests). Calling `doctest_discover_tests` in your `CMakeLists.txt` (see [doctest documentation on building with CMake](https://github.com/onqtam/doctest/blob/master/doc/markdown/build-systems.md#cmake)) followed by letting Test Explorer do its thing...

In my workflow I use all of the following commands: ``` cmake --list-presets cmake --preset cmake --build --list-presets cmake --build --preset ctest --list-presets ctest --preset ``` These are all of...