QuickCheck

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 a number of languages:

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. Thoms, Dave (2017-07-17), quixir: Property-based testing for Elixir, retrieved 2017-07-18
  16. "FsCheck". Github.com. June 25, 2015. Retrieved June 25, 2011.
  17. mcandre (October 13, 2011). "factcheck". Github.com. Retrieved December 9, 2011.
  18. leanovate (April 26, 2016). "Gopter". Retrieved April 26, 2016.
  19. mcandre (October 17, 2011). "IoCheck". Github.com. Retrieved December 9, 2011.
  20. "FunctionalJava's QuickCheck module". FunctionalJava. Retrieved August 14, 2015.
  21. "Quickcheck for Java". Quickcheck.dev.java.net. Retrieved December 9, 2011.
  22. "JCheck". JCheck. Retrieved December 9, 2011.
  23. "junit-quickcheck". junit-quickcheck. Retrieved July 3, 2013.
  24. "jqwik for the JUnit5 Platform". jqwik. Retrieved June 19, 2017.
  25. qc.js. "qc.js". Bitbucket.org. Retrieved December 9, 2011.
  26. "QuickCheck.jl". Retrieved December 9, 2016.
  27. "lgtunit". Github.com. Retrieved August 23, 2016.
  28. "lua-quickcheck". Github.com. Retrieved February 25, 2017.
  29. Node.js node-quickcheck
  30. mcandre. "objcheck". Github.com. Retrieved December 9, 2011.
  31. little-arhat. "ocaml-quickcheck". Github.com. Retrieved December 9, 2011.
  32. "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/.
  33. "library(quickcheck)".
  34. 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).
  35. steos. "PhpQuickCheck.". Github.com. Retrieved Nov 12, 2015.
  36. MacIver, David (April 26, 2016). "Hypothesis". Retrieved April 26, 2016.
  37. https://github.com/RevolutionAnalytics/quickcheck
  38. https://docs.racket-lang.org/quickcheck/index.html
  39. https://github.com/mcandre/rubycheck
  40. BurntSushi. "QuickCheck for Rust (with shrinking).". Github.com. Retrieved May 27, 2015.
  41. "ScalaCheck". Retrieved June 30, 2016.
  42. "scalaprops/scalaprops". GitHub. Retrieved 2016-06-30.
  43. "nyaya". GitHub. Retrieved 2016-06-30.
  44. "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).
  45. mcandre. "QuickSmash". Github.com. Retrieved December 9, 2011.
  46. "QCheck/SML". Contrapunctus.net. November 22, 2011. Retrieved December 9, 2011.
  47. https://github.com/typelift/SwiftCheck

Further reading

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.