Prusa-Firmware/lib/Catch2
Yuri D'Elia 1fea4a7335 catch2: Fix build with gcc13
Cherrypick of catch2 commit 52066dbc2a53f4c3ab2a418d03f93200a8245451 to
fix the build with gcc 13 without a full update.
2023-07-24 08:07:28 +02:00
..
.conan Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
.github Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
CMake Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
data/artwork Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
docs Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
examples Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
extras Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
fuzzing Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
src catch2: Fix build with gcc13 2023-07-24 08:07:28 +02:00
tests Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
third_party cmake: Update Catch2 2022-10-02 20:32:32 +02:00
tools Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
.bazelrc Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
.clang-format cmake: Update Catch2 2022-10-02 20:32:32 +02:00
.gitattributes cmake: Update Catch2 2022-10-02 20:32:32 +02:00
.gitignore Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
.gitrepo Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
BUILD.bazel Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
CMakeLists.txt Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
CMakePresets.json Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
CODE_OF_CONDUCT.md cmake: Update Catch2 2022-10-02 20:32:32 +02:00
Doxyfile Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
LICENSE.txt cmake: Update Catch2 2022-10-02 20:32:32 +02:00
README.md Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
SECURITY.md Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
WORKSPACE.bazel Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
appveyor.yml Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
codecov.yml Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
conanfile.py Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
mdsnippets.json Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
meson.build Update Catch2 v3.1.1 2022-10-22 16:10:41 +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