Prusa-Firmware-MMU/lib/Catch2
Yuri D'Elia 040cb8a2a6 catch2: Fix build with gcc13
Cherrypick of catch2 commit 52066dbc2a53f4c3ab2a418d03f93200a8245451 to
fix the build with gcc 13 without a full update.
2023-07-24 12:38:44 +02:00
..
.conan Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
.github Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
CMake Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
data/artwork Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
docs Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
examples Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
extras Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
fuzzing Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
src catch2: Fix build with gcc13 2023-07-24 12:38:44 +02:00
tests Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
third_party git subrepo clone --branch=v2.x git@github.com:catchorg/Catch2.git lib/Catch2 2021-05-12 10:30:49 +02:00
tools Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
.bazelrc Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
.clang-format git subrepo clone --branch=v2.x git@github.com:catchorg/Catch2.git lib/Catch2 2021-05-12 10:30:49 +02:00
.gitattributes git subrepo clone --branch=v2.x git@github.com:catchorg/Catch2.git lib/Catch2 2021-05-12 10:30:49 +02:00
.gitignore Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
.gitrepo Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
BUILD.bazel Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
CMakeLists.txt Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
CMakePresets.json Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
CODE_OF_CONDUCT.md git subrepo clone --branch=v2.x git@github.com:catchorg/Catch2.git lib/Catch2 2021-05-12 10:30:49 +02:00
Doxyfile Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
LICENSE.txt git subrepo clone --branch=v2.x git@github.com:catchorg/Catch2.git lib/Catch2 2021-05-12 10:30:49 +02:00
README.md Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
SECURITY.md Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
WORKSPACE.bazel Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
appveyor.yml Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
codecov.yml Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
conanfile.py Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
mdsnippets.json Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00
meson.build Update Catch2 v3.1.1 2022-10-22 15:41:14 +02:00

README.md

Catch2 logo

Github Releases Linux build status Linux build status MacOS build status Build Status Code Coverage Try online Join the chat in Discord: https://discord.gg/4CWS9zD

What's the Catch2?

Catch2 is mainly a unit testing framework for C++, but it also provides basic micro-benchmarking features, and simple BDD macros.

Catch2's main advantage is that using it is both simple and natural. Tests autoregister themselves and do not have to be named with valid identifiers, assertions look like normal C++ code, and sections provide a nice way to share set-up and tear-down code in tests.

Catch2 v3 is being developed!

You are on the devel branch, where the next major version, v3, of Catch2 is being developed. As it is a significant rework, you will find that parts of this documentation are likely still stuck on v2.

For stable (and documentation-matching) version of Catch2, go to the v2.x branch.

For migrating from the v2 releases to v3, you should look at our documentation. It provides a simple guidelines on getting started, and collects most common migration problems.

How to use it

This documentation comprises these three parts:

More