Difference between revisions of "Blog articles/Testing"

From HaskellWiki
Jump to navigation Jump to search
(hunit blog)
 
(18 intermediate revisions by 6 users not shown)
Line 1: Line 1:
== Type checking for correctness ==
+
== Type system enforcement ==
  +
  +
* [http://blog.moertel.com/articles/2007/08/15/a-bright-future-security-and-modern-type-systems A bright future: security and modern type systems]
 
* [http://weblog.raganwald.com/2007/07/can-your-type-checking-system-do-this.html Can your type checking system do this?]
 
* [http://weblog.raganwald.com/2007/07/can-your-type-checking-system-do-this.html Can your type checking system do this?]
  +
   
 
== Testing, correctness and proofs ==
 
== Testing, correctness and proofs ==
Line 7: Line 10:
   
 
* [http://haskell.org/haskellwiki/Introduction_to_QuickCheck Introduction to QuickCheck]
 
* [http://haskell.org/haskellwiki/Introduction_to_QuickCheck Introduction to QuickCheck]
* [http://cgi.cse.unsw.edu.au/~dons/blog/2007/05/01#xmonad_part1_model QuickChecking a window manager]
+
* [http://donsbot.wordpress.com/2007/05/01/roll-your-own-window-manager-part-1-defining-and-testing-a-model/ QuickChecking a window manager]
 
* [http://abstractabsurd.blogspot.com/2007/02/sussman-robustness-quickcheck.html Robustness and QuickCheck]
 
* [http://abstractabsurd.blogspot.com/2007/02/sussman-robustness-quickcheck.html Robustness and QuickCheck]
  +
* [http://lstephen.wordpress.com/2007/07/29/parsec-parser-testing-with-quickcheck/ Parsec Parser Testing with QuickCheck]
  +
* [http://disparatemathematician.blogspot.com/2007/08/why-testing-code-should-be-laissez.html QuickCheck : Why Testing code should be Laissez-faire]
  +
* [http://www.kennknowles.com/blog/2007/12/03/calculating-the-reflect-rotate-translate-normal-form-for-an-isometry-of-the-plane-in-haskell-and-verifying-it-with-quickcheck/ Calculating the reflect-rotate-translate normal form for an isometry of the plane in Haskell, and verifying it with QuickCheck.]
  +
* [http://www.jasani.org/2008/01/03/testing-haskell-with-quickcheck "Testing Haskell with QuickCheck"]
  +
   
 
===HUnit ===
 
===HUnit ===
   
  +
* [[HUnit 1.0 User's Guide]]
* [http://blogs.teamb.com/craigstuntz/archive/2006/12/08/UnitTestingAndTypeSafety.aspx On Unit Testing and Type Safety]
+
* [http://blogs.teamb.com/craigstuntz/2006/12/08/30370/ On Unit Testing and Type Safety]
 
* [http://leiffrenzel.de/papers/getting-started-with-hunit.html Getting started with HUnit]
 
* [http://leiffrenzel.de/papers/getting-started-with-hunit.html Getting started with HUnit]
  +
* [http://www.jasani.org/2007/12/05/unit-testing-with-hunit-in-haskell Unit testing with HUnit]
  +
   
 
===Catch===
 
===Catch===
  +
 
* [http://neilmitchell.blogspot.com/2007/05/does-xmonad-crash.html Does XMonad crash? On proving pattern coverage with Catch]
 
* [http://neilmitchell.blogspot.com/2007/05/does-xmonad-crash.html Does XMonad crash? On proving pattern coverage with Catch]
 
* [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]
  +
  +
  +
=== Other ===
  +
  +
* [https://github.com/kazu-yamamoto/unit-test-example/blob/master/markdown/en/tutorial.md Up-front Unit Testing in Haskell] - an article about unit testing in Haskell using [https://github.com/sol/doctest-haskell#readme Doctest], [http://hspec.github.io/ Hspec] and [http://www.haskell.org/cabal/ Cabal]
  +
* [http://ics.p.lodz.pl/~stolarek/blog/2012/10/code-testing-in-haskell/ Code testing in Haskell]
  +
  +
== Proofs ==
  +
  +
===GADTs===
  +
  +
* [http://www.iis.sinica.edu.tw/~scm/?p=32 Developing Programs and Proofs Spontaneously using GADT]
  +
  +
  +
===Coq===
  +
  +
* [http://www.rubrication.net/2007/04/24/strong-specifications/ Strong specifications in Coq: the type says everything]
  +
* Proving the monad laws in Coq
  +
** [http://sequence.complete.org/node/358 Introduction]
  +
** [http://sequence.complete.org/node/359 The First and Second Laws]
  +
** [http://sequence.complete.org/node/360 The Third Law]
  +
* [http://sequence.complete.org/node/363 Strongly Specified Functions]
  +
  +
  +
=== Isabelle===
  +
  +
* [http://users.lava.net/~newsham/formal/reverse/ Proving Haskell correct with Isabelle/HOL]
  +
  +
  +
=== Related work ===
  +
  +
* See the section on [[Blog_articles/Comparisons#Theorem_provers|theorem provers]]
  +
   
 
== 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]
  +
  +
  +
[[Category:Tutorials]]

Latest revision as of 18:49, 20 May 2013