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
|
Source: cxxtest
Section: devel
Priority: optional
Maintainer: Laszlo Boszormenyi (GCS) <gcs@debian.org>
Build-Depends: python3,
dh-python,
python3-setuptools,
python3-coverage,
debhelper (>= 10),
cdbs,
asciidoc (>= 8.5),
asciidoc-dblatex,
docbook-xsl (>=1.76),
dblatex,
source-highlight
Standards-Version: 4.5.0
Homepage: https://cxxtest.com/
Package: cxxtest
Architecture: all
Depends: ${python3:Depends}, python3-ply, ${misc:Depends}
Description: lightweight xUnit-like framework for C/C++ applications
CxxTest is a unit testing framework for C++ that is similar in spirit to
JUnit, CppUnit, and xUnit. It provides assertions for checking conditions
and classes for defining unit-test cases.
.
CxxTest is easy to use because it does not require precompiling a CxxTest
testing library, it employs no advanced features of C++ (e.g. RTTI) and it
supports a very flexible form of test discovery, which simplifies the creation
of test drivers. It includes a script that parses C++ files that define unit
tests and then generates a C++ test runner. When compiled, the test runner
manages the execution of all unit tests in a flexible manner.
|