diff options
author | Duane Penzien <linuxdad007@yahoo.com> | 2010-09-22 17:52:54 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-09-22 17:52:54 -0500 |
commit | b563dc32aacb513a129a89297838ea8d90667622 (patch) | |
tree | 4e0d43873de5ae6585de65b49e059cfa704e463b /development/check/README | |
parent | 966d20d5bb36f212c7bdd444d9150a4022ec540e (diff) | |
download | slackbuilds-b563dc32aacb513a129a89297838ea8d90667622.tar.gz |
development/check: Added (unit test framework)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development/check/README')
-rw-r--r-- | development/check/README | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/development/check/README b/development/check/README new file mode 100644 index 0000000000..ddac2aa29a --- /dev/null +++ b/development/check/README @@ -0,0 +1,7 @@ +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. + +See the project's home page for more information, including a tutorial. |