catch2-tests/3.7.1

[full]

Catch2 test package

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 is 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. Test names do not have to be valid identifiers, assertions look like normal C++ boolean expressions, and sections provide a nice and local way to share set-up and tear-down code in tests.

Example unit test

#include <catch2/catch_test_macros.hpp>

#include <cstdint>

uint32_t factorial( uint32_t number ) {
    return number <= 1 ? number : factorial(number-1) * number;
}

TEST_CASE( "Factorials are computed", "[factorial]" ) {
    REQUIRE( factorial( 1) == 1 );
    REQUIRE( factorial( 2) == 2 );
    REQUIRE( factorial( 3) == 6 );
    REQUIRE( factorial(10) == 3'628'800 );
}
... More
version 3.7.1
license BSL-1.0
repository https://pkg.cppget.org/1/stable
download catch2-tests-3.7.1.tar.gz
sha256 609ef81ce416b4355f6b122a68dda56a3e5705541e628e326940b8b1d5134d6d
project catch2
url github.com/catchorg/Catch2

Requires (3)

c++14
?VC15 or later if targeting windows
?c++2b option doesn't work with clang

Reviews

fail 0
pass 1