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 (2013-03-07)
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 a test case that falsifies these assertions. Once such a test case is found, QuickCheck tries to reduce it to a minimal failing subset by removing or simplifying input data that are not needed to make the test fail.

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][4] C++,[5][6][7] Chicken Scheme,[8] Clojure,[9][10][11] Common Lisp,[12] D,[13] Elm,[14] Erlang, F# (and C#, VB.NET), [15] Factor,[16] Go,[17] Io,[18] Java,[19][20][21][22] JavaScript,[23] Logtalk,[24] Node.js,[25] Objective-C,[26] OCaml,[27] Perl,[28] Prolog,[29][30] PHP,[31] Python,[32] R,[33] Racket,[34] Ruby,[35] Rust,[36] Scala,[37][38][39] Scheme,[40] Smalltalk,[41] Standard ML[42] and Swift.[43]

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. Scott Vokes (March 30, 2015). "Theft: property-based testing for C". GitHub.com. Retrieved November 16, 2015.
  5. "QuickCheck". Software.legiasoft.com. Retrieved December 9, 2011.
  6. "CppQuickCheck". Github.com. Retrieved March 30, 2015.
  7. "RapidCheck". Github.com. Retrieved March 30, 2015.
  8. mcandre. "cluckcheck". Github.com. Retrieved December 9, 2011.
  9. ClojureCheck. "ClojureCheck". Bitbucket.org. Retrieved December 9, 2011.
  10. reiddraper (May 9, 2013). "simple-check". Github.com. Retrieved August 21, 2013.
  11. reiddraper (March 27, 2014). "org.clojure/test.check". Github.com. Retrieved March 27, 2014.
  12. "cl-quickcheck". Cliki.net. Retrieved December 9, 2011.
  13. mcandre (October 27, 2011). "dashcheck". Github.com. Retrieved December 9, 2011.
  14. "elm-check". Github.com. Retrieved February 18, 2015.
  15. "FsCheck". Github.com. June 25, 2015. Retrieved June 25, 2011.
  16. mcandre (October 13, 2011). "factcheck". Github.com. Retrieved December 9, 2011.
  17. leanovate (April 26, 2016). "Gopter". Retrieved April 26, 2016.
  18. mcandre (October 17, 2011). "IoCheck". Github.com. Retrieved December 9, 2011.
  19. "FunctionalJava's QuickCheck module". FunctionalJava. Retrieved August 14, 2015.
  20. "Quickcheck for Java". Quickcheck.dev.java.net. Retrieved December 9, 2011.
  21. "JCheck". JCheck. Retrieved December 9, 2011.
  22. "junit-quickcheck". junit-quickcheck. Retrieved July 3, 2013.
  23. qc.js. "qc.js". Bitbucket.org. Retrieved December 9, 2011.
  24. "lgtunit". Github.com. Retrieved August 23, 2016.
  25. Node.js node-quickcheck
  26. mcandre. "objcheck". Github.com. Retrieved December 9, 2011.
  27. little-arhat. "ocaml-quickcheck". Github.com. Retrieved December 9, 2011.
  28. "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/.
  29. "library(quickcheck)".
  30. 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).
  31. steos. "PhpQuickCheck.". Github.com. Retrieved Nov 12, 2015.
  32. MacIver, David (April 26, 2016). "Hypothesis". Retrieved April 26, 2016.
  33. https://github.com/RevolutionAnalytics/quickcheck
  34. https://docs.racket-lang.org/quickcheck/index.html
  35. https://github.com/mcandre/rubycheck
  36. BurntSushi. "QuickCheck for Rust (with shrinking).". Github.com. Retrieved May 27, 2015.
  37. "ScalaCheck". Retrieved June 30, 2016.
  38. "scalaprops/scalaprops". GitHub. Retrieved 2016-06-30.
  39. "nyaya". GitHub. Retrieved 2016-06-30.
  40. "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).
  41. mcandre. "QuickSmash". Github.com. Retrieved December 9, 2011.
  42. "QCheck/SML". Contrapunctus.net. November 22, 2011. Retrieved December 9, 2011.
  43. https://github.com/typelift/SwiftCheck

Further reading

External links

Wikibooks has a book on the topic of: Haskell/Testing
This article is issued from Wikipedia - version of the 9/9/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.