1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Source: catch
Section: devel
Priority: optional
Maintainer: Jérémy Lal <kapouer@melix.org>
Build-Depends:
g++ (>= 7),
cmake,
debhelper (>= 10),
python3,
python3-urllib3
Standards-Version: 4.7.2
Homepage: https://github.com/catchorg/Catch2
Vcs-Git: https://salsa.debian.org/debian/catch.git
Vcs-Browser: https://salsa.debian.org/debian/catch
Package: catch
Architecture: all
Multi-Arch: foreign
Depends:
${misc:Depends}
Description: C++ Automated Test Cases in Headers
Catch is a multi-paradigm automated test framework for C++
and Objective-C.
.
Its key features are:
* Distributed as a single header file with no dependencies.
* Test cases are self-registering.
* Test cases can be de divided into isolated sections.
* Behaviour Driven Design style is possible with GIVEN-WHEN-THEN
in place of test cases and sections.
* Only one core assertion macro for comparisons; standard language
operators are used for comparison, yet the expression is decomposed
and properly logged.
|