Prusa-Firmware/lib/Catch2
3d-gussner 45a223a1f9 Remove White spaces 2024-05-20 19:09:03 +02:00
..
.conan Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
.github Remove White spaces 2024-05-20 19:09:03 +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 Remove White spaces 2024-05-20 19:09:03 +02:00
fuzzing Update Catch2 v3.1.1 2022-10-22 16:10:41 +02:00
src Remove White spaces 2024-05-20 19:09:03 +02:00
tests Remove White spaces 2024-05-20 19:09:03 +02:00
third_party cmake: Update Catch2 2022-10-02 20:32:32 +02:00
tools Remove White spaces 2024-05-20 19:09:03 +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 Remove White spaces 2024-05-20 19:09:03 +02:00
CMakePresets.json Remove White spaces 2024-05-20 19:09:03 +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 Remove White spaces 2024-05-20 19:09:03 +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