| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
CppQuickCheck
CppQuickCheck is a library for automated testing of C++ code. You provide a specification how your code is supposed to behave through properties and CppQuickCheck will generate a large number of random test cases that attempt to prove or disprove the properties. The specifications are written in pure C++ using the functionality of the CppQuickCheck library.
You can find examples in 'examples/src'.
CppQuickCheck is inspired and based on the QuickCheck library for Haskell. CppQuickCheck differs in some aspects of the implementation and interface (as well as being written in C++ instead of Haskell), but tries to maintain similar functionality to the QuickCheck library.
A similar library for C++ exists called QuickCheck++. QuickCheck++ does not support several important things that the Haskell QuickCheck supports including:
For these reasons, CppQuickCheck tries to maintain all the functionality of the Haskell QuickCheck, and so taking a different implementation approach than QuickCheck++.
Unit tests exists in the directory 'test'.
$ cmake . $ make check
To get a more detailed output, rerun it with
$ ./all-catch-tests
Please direct your pull requests to https://github.com/philipp-classen/CppQuickCheck, which is the repository where the active development takes place.
Currently, CppQuickCheck uses C++11 but not C++14. Travis will compile the library and run the tests with GCC 4.9 and Clang 3.8.
CppQuickCheck is distributed under a BSD license (see LICENSE).
| Back | FazBrowse Home | New Git URL |