catch2-examples/3.5.1+1

[full]

Catch2 Examples

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.5.1+1
license BSL-1.0
repository https://pkg.cppget.org/1/stable
download catch2-examples-3.5.1+1.tar.gz
sha256 b65be2ba39a8ce88bafeaaaa9e0c214694e42189233d274b52dfd07e247790b7
project catch2
url github.com/catchorg/Catch2

Requires (2)

c++14
?VC15 or later if targeting windows

Reviews

fail 0
pass 1