Difference between revisions of "Property Based Developer Testing"
From CitconWiki
Jump to navigationJump to searchLine 2: | Line 2: | ||
Proposed by [[Paul Holser]] | Proposed by [[Paul Holser]] | ||
+ | |||
+ | = Literature = | ||
+ | * [http://debasishg.blogspot.com/2012/07/property-based-testing-for-domain-models.html Property based testing for domain models] | ||
+ | * [http://blog.jessitron.com/2013/04/property-based-testing-what-is-it.html Property-based testing: What is it?] | ||
+ | * [http://book.realworldhaskell.org/read/testing-and-quality-assurance.html Real World Haskell: testing and quality assurance] | ||
+ | * [http://www.slideshare.net/FranklinChen/handout-18644963 Beyond xUnit exampled-based testing: property-based testing with ScalaCheck] | ||
+ | * [https://gist.github.com/npryce/4147916 Property-Based Testing Tools] | ||
= Tooling: = | = Tooling: = | ||
Line 16: | Line 23: | ||
* [https://github.com/DRMacIver/hypothesis Hypothesis] | * [https://github.com/DRMacIver/hypothesis Hypothesis] | ||
* [https://github.com/dbravender/qc qc] | * [https://github.com/dbravender/qc qc] | ||
+ | |||
+ | == Ruby == | ||
+ | * [https://github.com/IKEGAMIDaisuke/rushcheck rushcheck] | ||
+ | * [https://github.com/hayeah/rantly rantly] | ||
+ | |||
+ | == Haskell == | ||
+ | * [http://www.cse.chalmers.se/~rjmh/QuickCheck/ QuickCheck] | ||
+ | |||
+ | == Erlang == | ||
+ | * [http://www.protest-project.eu/ ProTest] |
Revision as of 07:25, 24 August 2013
Session at CITCONNA2013Sessions
Proposed by Paul Holser
Literature
- Property based testing for domain models
- Property-based testing: What is it?
- Real World Haskell: testing and quality assurance
- Beyond xUnit exampled-based testing: property-based testing with ScalaCheck
- Property-Based Testing Tools