QuickCheck

For the convenience store, see Quick Chek.
QuickCheck
Developer(s) Koen Claessen, John Hughes
Initial release 1999
Stable release 2.6 / 7 March 2013
Operating system Unix-like, Microsoft Windows
Available in Haskell
Type Software testing
License BSD-style
Website www.cse.chalmers.se/~rjmh/QuickCheck/

QuickCheck is a combinator library originally written in Haskell, designed to assist in software testing by generating test cases for test suites. It is compatible with the GHC compiler and the Hugs interpreter.

In QuickCheck the programmer writes assertions about logical properties that a function should fulfill. Then QuickCheck attempts to generate test cases that falsify these assertions. The project was started in 1999. Besides being used to test regular programs, QuickCheck is also useful for building up a functional specification, for documenting what functions should be doing, and for testing compiler implementations.[1]

Re-implementations of QuickCheck exist for C,[2][3] C++,[4][5] Chicken Scheme,[6] Clojure,[7][8][9] Common Lisp,[10] D,[11] Elm, [12] Erlang, F#,[13] Factor,[14] Io,[15] Java,[16][17][18] JavaScript,[19] Node.js,[20] Objective-C,[21] OCaml,[22] Perl,[23] Prolog,[24][25] Python,[26] R,[27] Ruby,[28] Scala,[29] Scheme,[30] Smalltalk[31] and Standard ML.[32]

See also

References

  1. http://hackage.haskell.org/packages/archive/collections-api/1.0.0.0/doc/html/Data-Collections-Properties.html
  2. mcandre (October 13, 2011). "qc". Github.com. Retrieved December 9, 2011.
  3. nivox (July 27, 2014). "quickcheck4c". Github.com. Retrieved July 27, 2014.
  4. "QuickCheck". Software.legiasoft.com. Retrieved December 9, 2011.
  5. "CppQuickCheck". Github.com. Retrieved March 30, 2015.
  6. mcandre. "cluckcheck". Github.com. Retrieved December 9, 2011.
  7. ClojureCheck. "ClojureCheck". Bitbucket.org. Retrieved December 9, 2011.
  8. reiddraper (May 9, 2013). "simple-check". Github.com. Retrieved August 21, 2013.
  9. reiddraper (March 27, 2014). "org.clojure/test.check". Github.com. Retrieved March 27, 2014.
  10. "cl-quickcheck". Cliki.net. Retrieved December 9, 2011.
  11. mcandre (October 27, 2011). "dashcheck". Github.com. Retrieved December 9, 2011.
  12. "elm-check". Github.com. Retrieved February 18, 2015.
  13. "FsCheck". Codeplex.com. May 29, 2011. Retrieved December 9, 2011.
  14. mcandre (October 13, 2011). "factcheck". Github.com. Retrieved December 9, 2011.
  15. mcandre (October 17, 2011). "IoCheck". Github.com. Retrieved December 9, 2011.
  16. "Quickcheck for Java". Quickcheck.dev.java.net. Retrieved December 9, 2011.
  17. "JCheck". JCheck. Retrieved December 9, 2011.
  18. "junit-quickcheck". junit-quickcheck. Retrieved July 3, 2013.
  19. qc.js. "qc.js". Bitbucket.org. Retrieved December 9, 2011.
  20. Node.js node-quickcheck
  21. mcandre. "objcheck". Github.com. Retrieved December 9, 2011.
  22. little-arhat. "ocaml-quickcheck". Github.com. Retrieved December 9, 2011.
  23. "Test::LectroTest::Tutorial". The LectroTest project was inspired by Haskell's QuickCheck module by Koen Claessen and John Hughes: http://www.cs.chalmers.se/~rjmh/QuickCheck/.
  24. "library(quickcheck)".
  25. Claudio Amaral, Mario Florido, Vitor Santos Costa (2014). "PrologCheck - Property-based testing in Prolog". Proceedings of the Twelfth International Symposium on Functional and Logic Programming (FLOPS 2014).
  26. MacIver, David (March 30, 2015). "Hypothesis documentation". Retrieved March 30, 2015.
  27. https://github.com/RevolutionAnalytics/quickcheck
  28. https://github.com/mcandre/rubycheck
  29. "ScalaCheck". Retrieved March 30, 2015.
  30. "Scheme-Check is a module that implements randomized unit testing in PLT Scheme. With Scheme-Check, instead of creating lots of individual tests, you specify properties of your code and Scheme-Check generates a large amount of random data sets to test those properties. Scheme-Check is basically a Scheme port of QuickCheck" -(Internet Archive copy).
  31. mcandre. "QuickSmash". Github.com. Retrieved December 9, 2011.
  32. "QCheck/SML". Contrapunctus.net. November 22, 2011. Retrieved December 9, 2011.

Further reading

External links

Wikibooks has a book on the topic of: Haskell/Testing