Catch2 test package
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-tests-3.5.1+1.tar.gz |
sha256 | f76fa958ad00ff0681495fced1f6623f4deeca3e3ceb6821e575c9d9fc78f378 |
project | catch2 |
---|---|
url | github.com/catchorg/Catch2 |
swat.somebug@gmail.com |
Requires (3)
c++14 | |
?VC15 or later if targeting windows | |
?c++2b option doesn't work with clang |
Reviews
fail | 0 |
---|---|
pass | 1 |