diff options
author | mikeh <mikeh@FreeBSD.org> | 2003-12-05 08:46:02 +0800 |
---|---|---|
committer | mikeh <mikeh@FreeBSD.org> | 2003-12-05 08:46:02 +0800 |
commit | 153a42f9b807f932b7816fac74611657c05f212c (patch) | |
tree | 80516e790d1f1927f1cbf128f1636a3213a86232 /devel/libcheck/pkg-descr | |
parent | 2cb5319baaedc0762a21201da271c4f9e640e589 (diff) | |
download | freebsd-ports-gnome-153a42f9b807f932b7816fac74611657c05f212c.tar.gz freebsd-ports-gnome-153a42f9b807f932b7816fac74611657c05f212c.tar.zst freebsd-ports-gnome-153a42f9b807f932b7816fac74611657c05f212c.zip |
Add libcheck 0.8.4, a unit test framework for C.
PR: 59280
Submitted by: mikeh@FreeBSD.org
Diffstat (limited to 'devel/libcheck/pkg-descr')
-rw-r--r-- | devel/libcheck/pkg-descr | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/libcheck/pkg-descr b/devel/libcheck/pkg-descr new file mode 100644 index 000000000000..77296e616a9d --- /dev/null +++ b/devel/libcheck/pkg-descr @@ -0,0 +1,24 @@ +Check is a unit test framework for C. It features a simple interface +for defining unit tests, putting little in the way of the +developer. Tests are run in a separate address space, so Check can +catch both assertion failures and code errors that cause segmentation +faults or other signals. The output from unit tests can be used within +source code editors and IDEs. + +Check was inspired by similar frameworks that currently exist for most +programming languages; the most famous example being JUnit for Java +(www.junit.org). There is a list of unit test frameworks for multiple +languages at www.xprogramming.com/software.htm . Unit testing has a +long history as part of formal quality assurance methodologies, but +has recently been associated with the lightweight methodology called +Extreme Programming. In that methodology, the characteristic practice +involves interspersing unit test writing with coding (" test a little, +code a little"). While the incremental unit test/code approach is +indispensable to Extreme Programming, it is also applicable, and +perhaps indispensable, outside of that methodology. + + +WWW: http://check.sourceforge.net + +- Mike +mikeh@FreeBSD.org |