Criterion/README.md

107 lines
4.5 KiB
Markdown
Raw Permalink Normal View History

2015-08-01 17:26:18 +02:00
<img src="doc/criterion-title.png" height="96" alt="Criterion Logo" />
=========
[![Unix Build Status](https://api.travis-ci.org/Snaipe/Criterion.svg?branch=bleeding)](https://travis-ci.org/Snaipe/Criterion)
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/Snaipe/Criterion?svg=true&branch=bleeding)](https://ci.appveyor.com/project/Snaipe/Criterion/branch/bleeding)
[![Coverage Status](https://img.shields.io/codecov/c/github/Snaipe/Criterion/bleeding.svg)](https://codecov.io/github/Snaipe/Criterion?branch=bleeding)
2015-03-09 06:47:47 +01:00
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/Snaipe/Criterion/blob/master/LICENSE)
[![Version](https://img.shields.io/badge/version-v2.3.0--rc1-blue.svg?style=flat)](https://github.com/Snaipe/Criterion/releases)
2015-09-07 10:35:17 +02:00
A dead-simple, yet extensible, C and C++ unit testing framework.
2015-03-09 04:04:33 +01:00
![Screencast](./doc/screencast.gif)
## 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:
2015-09-07 10:35:17 +02:00
* [x] C99 and C++11 compatible.
2015-03-11 18:58:20 +01:00
* [x] Tests are automatically registered when declared.
2015-03-23 14:46:14 +01:00
* [x] Implements a xUnit framework structure.
2015-03-11 18:58:20 +01:00
* [x] A default entry point is provided, no need to declare a main
unless you want to do special handling.
2015-03-11 18:58:20 +01:00
* [x] Test are isolated in their own process, crashes and signals can be
reported and tested.
2015-09-07 10:35:17 +02:00
* [x] Unified interface between C and C++: include the criterion header and it *just* works.
2015-09-21 18:08:06 +02:00
* [x] Supports parameterized tests and theories.
2015-03-11 18:58:20 +01:00
* [x] Progress and statistics can be followed in real time with report hooks.
* [x] TAP output format can be enabled with an option.
2015-09-06 20:19:06 +02:00
* [x] Runs on Linux, FreeBSD, Mac OS X, and Windows (Compiling with MinGW GCC and Visual Studio 2015+).
## Downloads
2015-09-22 14:06:36 +02:00
### Packages
* Mac OS X: `brew install snaipe/soft/criterion`
* [AUR](https://aur.archlinux.org/packages/criterion/): `yaourt -S criterion`
### Binary archives
2016-04-13 11:19:38 +02:00
Binary releases are available [on the release page](https://github.com/Snaipe/Criterion/releases)
If you have a different platform, you can still [build the library from source](http://criterion.readthedocs.org/en/latest/setup.html#installation)
## Developer Resources
### Documentation
2015-03-09 04:04:33 +01:00
An online documentation is available on [ReadTheDocs][online-docs]
([PDF][pdf-docs] | [Zip][zip-docs] | [Epub][epub-docs])
### Samples
Sample tests can be found in the [sample directory][samples].
* [A simple test][sample-simple]
* [Using multiple suites][sample-suites]
* [Writing assertions][sample-asserts]
2015-03-11 18:58:20 +01:00
* [Adding test fixtures][sample-fixtures]
* [Tests with signals][sample-signal]
* [Using report hooks][sample-report]
### Getting help
2015-04-09 12:09:21 +02:00
| Channel | Description |
| --- | --- |
2016-07-28 17:34:08 +02:00
[![Subscribe to the mailing list](https://img.shields.io/badge/ml-criterion@freelists.org-46BC99.svg)][mailing-list] | Criterion mailing list on freelists.org
[![Join the chat at https://gitter.im/Snaipe/Criterion](https://badges.gitter.im/Join%20Chat.svg)][gitter-chan] | `Snaipe/Criterion` on gitter.im
[![Join #criterion on freenode](https://img.shields.io/badge/irc-%23criterion-46BC99.svg)][irc-chan] | `#criterion` on irc.freenode.net
2015-04-09 12:09:21 +02:00
2015-09-09 17:14:45 +02:00
### Misc
2015-04-09 12:09:21 +02:00
2016-09-24 00:39:35 +02:00
* [autotools skeleton for projects with criterion tests][autotools]
2015-09-09 17:14:45 +02:00
* [CMake find module for Criterion][find-module]
2015-04-09 12:09:21 +02:00
2015-08-01 17:50:33 +02:00
## Credits
Logo made by [Paul Bouigue](http://www.cargocollective.com/pbouigue)
[online-docs]: http://criterion.readthedocs.org/
[pdf-docs]: http://readthedocs.org/projects/criterion/downloads/pdf/latest/
[zip-docs]: http://readthedocs.org/projects/criterion/downloads/htmlzip/latest/
[epub-docs]: http://readthedocs.org/projects/criterion/downloads/epub/latest/
[samples]: ./samples/
2015-03-11 18:58:20 +01:00
[sample-simple]: ./samples/simple.c
[sample-suites]: ./samples/suites.c
[sample-asserts]: ./samples/asserts.c
2015-03-11 18:58:20 +01:00
[sample-fixtures]: ./samples/fixtures.c
[sample-signal]: ./samples/signal.c
[sample-report]: ./samples/report.c
2015-09-09 17:14:45 +02:00
2016-09-24 00:39:35 +02:00
[autotools]: ./dev/autotools
2015-09-09 17:14:45 +02:00
[find-module]: ./dev/FindCriterion.cmake
2015-10-05 19:11:59 +02:00
[irc-chan]: http://webchat.freenode.net/?channels=%23criterion&uio=MTY9dHJ1ZSYyPXRydWUmOT10cnVlJjExPTE5NQ4e
[gitter-chan]: https://gitter.im/Snaipe/Criterion?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
2016-07-28 17:34:08 +02:00
[mailing-list]: http://www.freelists.org/list/criterion