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
|
Source: libtut
Section: libs
Priority: optional
Maintainer: Debian QA Group <packages@qa.debian.org>
Build-Depends: debhelper-compat (= 13),
Rules-Requires-Root: no
Standards-Version: 4.7.0
Homepage: http://tut-framework.sourceforge.net/
Vcs-Browser: https://salsa.debian.org/debian/libtut
Vcs-Git: https://salsa.debian.org/debian/libtut.git
Package: libtut-dev
Section: libdevel
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
Suggests: pkgconf (>= 0.16.0-1),
Description: elegant C++ unit test framework
TUT is a unit test framework for C++, written in pure C++. It makes use of
C++ templates to reduce the responsibilities of the user and provide an
intuitive and easy-to-use interface. Unlike other test unit frameworks for
C++, TUT doesn't use macros, since their usage conceals actual implementation
and (what's worse) can interfere with client application.
.
TUT completely fits into a single header file. No library compilation is
required, thus a lot of portability problems are avoided and integration with
client code is very simple.
|