Difference between revisions of "Blog articles/Testing"
From HaskellWiki
DonStewart (talk | contribs) (→QuickCheck) |
DonStewart (talk | contribs) (→Catch) |
||
Line 20: | Line 20: | ||
* [http://neilmitchell.blogspot.com/2007/05/preconditions-on-xmonad.html Preconditions on XMonad] | * [http://neilmitchell.blogspot.com/2007/05/preconditions-on-xmonad.html Preconditions on XMonad] | ||
* [http://neilmitchell.blogspot.com/2007/07/equational-reasoning-in-haskell.html Equational Reasoning in Haskell] | * [http://neilmitchell.blogspot.com/2007/07/equational-reasoning-in-haskell.html Equational Reasoning in Haskell] | ||
+ | |||
+ | == Proofs == | ||
+ | |||
+ | * [http://www.rubrication.net/2007/04/24/strong-specifications/ Strong specifications in Coq: the type says everything] | ||
== Further reading == | == Further reading == | ||
* [http://haskell.org/haskellwiki/Research_papers/Testing_and_correctness Research papers on testing, proofs and correctness] | * [http://haskell.org/haskellwiki/Research_papers/Testing_and_correctness Research papers on testing, proofs and correctness] |
Revision as of 03:31, 31 July 2007
Contents
Type checking for correctness
Testing, correctness and proofs
QuickCheck
- Introduction to QuickCheck
- QuickChecking a window manager
- Robustness and QuickCheck
- Parsec Parser Testing with QuickCheck
HUnit
Catch
- Does XMonad crash? On proving pattern coverage with Catch
- Preconditions on XMonad
- Equational Reasoning in Haskell