Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ioggstream/iassert
A trivial C unit testing library
https://github.com/ioggstream/iassert
Last synced: 25 days ago
JSON representation
A trivial C unit testing library
- Host: GitHub
- URL: https://github.com/ioggstream/iassert
- Owner: ioggstream
- License: lgpl-3.0
- Created: 2012-02-02T09:32:56.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-02-24T16:03:34.000Z (almost 13 years ago)
- Last Synced: 2024-10-15T03:43:02.386Z (2 months ago)
- Language: C
- Homepage:
- Size: 109 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
iassert
==========iassert is a simple testing library supporting:
* setup and teardown methods
* multiple testsuites
* simple error reporting
The basic idea of iassert is to execute teardown methods in case of assertion failure using signal handlers.This non-hortodox approach (signal handlers should use only async-signal-safe functions)
make this library very easy and efficient in pointing to errors.Moreover, as failures are triggered by a SIGABRT, the program is in every case doomed to die.
See examples for more info.