Prusa-Firmware-MMU/lib/Catch2
Guðni Már Gilbert 12bd495c06 Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
..
.conan Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
.github Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
CMake Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
data/artwork Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
docs Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
examples Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
extras Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
fuzzing Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
src Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
tests Update to Catch 3.1.0 2022-10-16 20:37:53 +00: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 to Catch 3.1.0 2022-10-16 20:37:53 +00:00
.bazelrc Update to Catch 3.1.0 2022-10-16 20:37:53 +00: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 to Catch 3.1.0 2022-10-16 20:37:53 +00:00
BUILD.bazel Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
CMakeLists.txt Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
CMakePresets.json Update to Catch 3.1.0 2022-10-16 20:37:53 +00: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 to Catch 3.1.0 2022-10-16 20:37:53 +00: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 to Catch 3.1.0 2022-10-16 20:37:53 +00:00
SECURITY.md Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
WORKSPACE Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
appveyor.yml Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
codecov.yml Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
conanfile.py Update to Catch 3.1.0 2022-10-16 20:37:53 +00:00
mdsnippets.json Update to Catch 3.1.0 2022-10-16 20:37:53 +00: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