QuickCheck: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Citation bot (talk | contribs)
m Add: isbn, series, doi, pages, volume. Removed parameters. Formatted dashes. | You can use this bot yourself. Report bugs here.| Activated by User:Headbomb
Line 63: Line 63:
|title=PrologCheck - Property-based testing in Prolog
|title=PrologCheck - Property-based testing in Prolog
|journal=Proceedings of the Twelfth International Symposium on Functional and Logic Programming (FLOPS 2014)
|journal=Proceedings of the Twelfth International Symposium on Functional and Logic Programming (FLOPS 2014)
|volume=8475 |pages=1–17 |doi=10.1007/978-3-319-07151-0_1 |series=Lecture Notes in Computer Science |isbn=978-3-319-07150-3 }}</ref>
}}</ref>
* [[PHP]]<ref>{{cite web |last=Oestreicher |first=Stefan (steos) |url=https://github.com/steos/php-quickcheck |title=PhpQuickCheck |website=GitHub |access-date=November 12, 2015}}</ref>
* [[PHP]]<ref>{{cite web |last=Oestreicher |first=Stefan (steos) |url=https://github.com/steos/php-quickcheck |title=PhpQuickCheck |website=GitHub |access-date=November 12, 2015}}</ref>
* [[Pony_(programming_language)|Pony]]<ref>{{cite web |last=Wahl |first=Matthias (mfelsche) |url=https://github.com/mfelsche/ponycheck |title=ponycheck |website=GitHub |access-date=December 26, 2018}}</ref>
* [[Pony_(programming_language)|Pony]]<ref>{{cite web |last=Wahl |first=Matthias (mfelsche) |url=https://github.com/mfelsche/ponycheck |title=ponycheck |website=GitHub |access-date=December 26, 2018}}</ref>
Line 105: Line 105:
|journal=Proc. Of International Conference on Functional Programming (ICFP), ACM SIGPLAN
|journal=Proc. Of International Conference on Functional Programming (ICFP), ACM SIGPLAN
|url=http://www.eecs.northwestern.edu/%7Erobby/courses/395-495-2009-fall/quick.pdf
|url=http://www.eecs.northwestern.edu/%7Erobby/courses/395-495-2009-fall/quick.pdf
|format=[[PDF]]
|access-date=2006-01-29
|access-date=2006-01-29
}}
}}

Revision as of 16:26, 25 July 2019

Developer(s)Koen Claessen, John Hughes
Initial release1999; 25 years ago (1999)
Stable release
2.6 / 7 March 2013; 11 years ago (2013-03-07)
Written inHaskell
Operating systemUnix-like, Windows
Available inEnglish
TypeSoftware testing
LicenseBSD-style
Websitewww.cse.chalmers.se/~rjmh/QuickCheck

QuickCheck is a software library, specifically a combinator library, originally written in the programming language Haskell, designed to assist in software testing by generating test cases for test suites. It is compatible with the compiler, Glasgow Haskell Compiler (GHC) and the interpreter, Haskell User's Gofer System (Hugs). It is free and open-source software released under a BSD-style license.

In QuickCheck, assertions are written about logical properties that a function should fulfill. Then QuickCheck attempts to generate a test case that falsifies such 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 unneeded to make the test fail.

The project began 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 several languages:

See also

References

  1. ^ "Data.Collections.Properties". hackage.haskell.org.
  2. ^ Pennebaker, Andrew (mcandre) (October 13, 2011). "qc". GitHub. Retrieved December 9, 2011.
  3. ^ Zito, Andrea (nivox) (July 27, 2014). "quickcheck4c". GitHub. Retrieved July 27, 2014.
  4. ^ Vokes, Scott (March 30, 2015). "Theft: property-based testing for C". GitHub. Retrieved November 16, 2015.
  5. ^ "QuickCheck". Software.legiasoft.com. Retrieved December 9, 2011.
  6. ^ "CppQuickCheck". GitHub. Retrieved March 30, 2015.
  7. ^ "RapidCheck". GitHub. Retrieved March 30, 2015.
  8. ^ Pennebaker, Andrew (mcandre). "cluckcheck". GitHub. Retrieved December 9, 2011.
  9. ^ Brandmeyer, Meikel (kotarak). "ClojureCheck". Bitbucket. Retrieved December 9, 2011.
  10. ^ Draper, Reid (reiddraper) (May 9, 2013). "simple-check". GitHub. Retrieved August 21, 2013.
  11. ^ Draper, Reid (reiddraper) (March 27, 2014). "org.clojure/test.check". GitHub. Retrieved March 27, 2014.
  12. ^ "cl-quickcheck". Cliki. Retrieved December 9, 2011.
  13. ^ Pennebaker, Andrew (mcandre) (October 27, 2011). "dashcheck". GitHub. Retrieved December 9, 2011.
  14. ^ "elm-explorations/test". GitHub. Retrieved November 20, 2018.
  15. ^ Thomas, Dave (pragdave) (July 17, 2017). "quixir: Property-based testing for Elixir". GitHub. Retrieved April 1, 2019.
  16. ^ "PropEr: a QuickCheck-inspired property-based testing tool for Erlang". GitHub. Retrieved May 8, 2019.
  17. ^ "FsCheck". GitHub. June 25, 2015. Retrieved June 25, 2011.
  18. ^ Pennebaker, Andrew (mcandre) (October 13, 2011). "factcheck". GitHub. Retrieved December 9, 2011.
  19. ^ leanovate (April 26, 2016). "Gopter". Retrieved April 26, 2016.
  20. ^ Pennebaker, Andrew (mcandre) (October 17, 2011). "IoCheck". GitHub. Retrieved December 9, 2011.
  21. ^ "FunctionalJava's QuickCheck module". FunctionalJava. Retrieved August 14, 2015.
  22. ^ "Quickcheck for Java". Quickcheck.dev.java.net. Retrieved December 9, 2011.
  23. ^ "JCheck". JCheck. Retrieved December 9, 2011.
  24. ^ "junit-quickcheck". junit-quickcheck. Retrieved July 3, 2013.
  25. ^ "jqwik for the JUnit5 Platform". jqwik. Retrieved June 19, 2017.
  26. ^ "Quick Theories property testing for Java 8". ncredinburgh. Retrieved October 30, 2017.
  27. ^ "jetCheck property-based testing for Java 8". JetBrains. Retrieved July 10, 2018.
  28. ^ Thompson, Darrin (darrint). "qc.js". Bitbucket. Retrieved December 9, 2011.
  29. ^ Crockford, Douglas. "jscheck". GitHub. Retrieved October 21, 2017.
  30. ^ Dubien, Nicolas (dubzzz). "fast-check". GitHub. Retrieved February 3, 2018.
  31. ^ "Checkers.jl". Retrieved April 8, 2018.
  32. ^ "lgtunit". GitHub. Retrieved August 23, 2016.
  33. ^ "lua-quickcheck". GitHub. Retrieved February 25, 2017.
  34. ^ "quickcheck". npm.
  35. ^ Pennebaker, Andrew (mcandre). "objcheck". GitHub. Retrieved December 9, 2011.
  36. ^ Sokolov, Roma (little-arhat). "ocaml-quickcheck". GitHub. Retrieved December 9, 2011.
  37. ^ "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/. {{cite web}}: External link in |quote= (help)
  38. ^ "library(quickcheck)".
  39. ^ Amaral, Claudio; Florido, Mario; Costa, Vitor Santos (2014). "PrologCheck - Property-based testing in Prolog". Proceedings of the Twelfth International Symposium on Functional and Logic Programming (FLOPS 2014). Lecture Notes in Computer Science. 8475: 1–17. doi:10.1007/978-3-319-07151-0_1. ISBN 978-3-319-07150-3.
  40. ^ Oestreicher, Stefan (steos). "PhpQuickCheck". GitHub. Retrieved November 12, 2015.
  41. ^ Wahl, Matthias (mfelsche). "ponycheck". GitHub. Retrieved December 26, 2018.
  42. ^ MacIver, David (April 26, 2016). "Hypothesis". Retrieved April 26, 2016.
  43. ^ "quickcheck: Randomized testing for R". GitHub. September 11, 2017.
  44. ^ "Quickcheck". docs.racket-lang.org.
  45. ^ Pennebaker, Andrew (mcandre) (September 14, 2017). "Rubycheck: a Ruby port of the QuickCheck unit test framework". GitHub.
  46. ^ Gallant, Andrew (BurntSushi). "QuickCheck for Rust (with shrinking)". GitHub. Retrieved May 27, 2015.
  47. ^ "Hypothesis-like property testing for Rust".
  48. ^ "ScalaCheck". Retrieved June 30, 2016.
  49. ^ "scalaprops/scalaprops". GitHub. Retrieved June 30, 2016.
  50. ^ "nyaya". GitHub. Retrieved June 30, 2016.
  51. ^ "Scheme-Check: Randomized Unit Testing for PLT Scheme". Archived from the original on December 2005. Scheme-Check is a module that implements randomized unit testing in PLT Scheme. With Scheme-Check, instead of creating many 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. {{cite web}}: Check date values in: |archive-date= (help)
  52. ^ Pennebaker, Andrew (mcandre). "QuickSmash". GitHub. Retrieved December 9, 2011.
  53. ^ "QCheck/SML". Contrapunctus. November 22, 2011. Retrieved December 9, 2011.
  54. ^ "SwiftCheck: QuickCheck for Swift". GitHub. November 3, 2017.
  55. ^ Dubien, Nicolas (dubzzz). "fast-check". GitHub. Retrieved February 3, 2018.

Further reading