A KISS, non-intrusive cross-platform C unit testing framework
Find a file
a1lu 25d444b1b9 cli: Added --crash cli option (#126) (#139)
If a assert fails and --crash is given, the debugger will trapped in
this assert using debugbreak.h from the new debugbreak submodule.
2016-08-22 10:17:55 +02:00
.cmake cmake: Add -fvisibility=hidden by default. Fixes #141 2016-08-10 10:50:29 +02:00
dependencies cli: Added --crash cli option (#126) (#139) 2016-08-22 10:17:55 +02:00
dev dev: Fix FindCriterion.cmake package name 2016-05-15 12:40:40 +02:00
doc extended glob matcher with brzozowski derivative (#111) 2016-07-23 22:32:57 +02:00
include/criterion cli: Added --crash cli option (#126) (#139) 2016-08-22 10:17:55 +02:00
po i18n: removed unnecessary N_ on non-nls string 2016-07-24 17:12:21 +02:00
samples extended glob matcher with brzozowski derivative (#111) 2016-07-23 22:32:57 +02:00
src cli: Added --crash cli option (#126) (#139) 2016-08-22 10:17:55 +02:00
test cli: Added --crash cli option (#126) (#139) 2016-08-22 10:17:55 +02:00
.bumpversion.cfg Merge branch 'patch' into bleeding 2016-06-20 09:53:04 +02:00
.gitignore Merge branch 'features/io-rewrite-nanopb' into bleeding 2016-01-18 01:35:55 +01:00
.gitmodules cli: Added --crash cli option (#126) (#139) 2016-08-22 10:17:55 +02:00
.travis.yml travis: Parallelized tests 2016-07-24 14:56:09 +02:00
appveyor.yml Merge branch 'patch' into bleeding 2016-06-20 09:53:04 +02:00
ChangeLog release: Prepare release 2.2.2 2016-06-20 09:36:25 +02:00
CMakeLists.txt cli: Added --crash cli option (#126) (#139) 2016-08-22 10:17:55 +02:00
CONTRIBUTING.md Updated contribution road map 2015-09-17 00:29:11 +02:00
debian.copyright [license] Updated license year on missed files 2016-01-18 16:06:54 +01:00
description.txt Added missing files for ppa builds 2015-11-28 14:33:09 +01:00
LICENSE We're in 2016. 2016-01-06 17:35:35 +01:00
README.md readme: Added link to the mailing list 2016-07-28 17:34:08 +02:00

Criterion Logo =========

Unix Build Status Windows Build Status Coverage Status License Version

A dead-simple, yet extensible, C and C++ unit testing framework.

Screencast

Philosophy

Most test frameworks for C require a lot of boilerplate code to set up tests and test suites -- you need to create a main, then register new test suites, then register the tests within these suits, and finally call the right functions.

This gives the user great control, at the unfortunate cost of simplicity.

Criterion follows the KISS principle, while keeping the control the user would have with other frameworks:

  • C99 and C++11 compatible.
  • Tests are automatically registered when declared.
  • Implements a xUnit framework structure.
  • A default entry point is provided, no need to declare a main unless you want to do special handling.
  • Test are isolated in their own process, crashes and signals can be reported and tested.
  • Unified interface between C and C++: include the criterion header and it just works.
  • Supports parameterized tests and theories.
  • Progress and statistics can be followed in real time with report hooks.
  • TAP output format can be enabled with an option.
  • Runs on Linux, FreeBSD, Mac OS X, and Windows (Compiling with MinGW GCC and Visual Studio 2015+).

Downloads

Packages

  • Mac OS X: brew install snaipe/soft/criterion
  • AUR: yaourt -S criterion

Binary archives

Binary releases are available on the release page

If you have a different platform, you can still build the library from source

Developer Resources

Documentation

An online documentation is available on ReadTheDocs (PDF | Zip | Epub)

Samples

Sample tests can be found in the sample directory.

Getting help

Channel Description
Subscribe to the mailing list Criterion mailing list on freelists.org
Join the chat at https://gitter.im/Snaipe/Criterion Snaipe/Criterion on gitter.im
Join #criterion on freenode #criterion on irc.freenode.net

Misc

Credits

Logo made by Paul Bouigue