Hacker News new | ask | show | jobs
by dllthomas 1337 days ago
While of course Haskell has more normal testing infrastructure available (eg. https://hspec.github.io/), my favorite bit of Haskell testing is QuickCheck, which IIUC started life in Haskell and has been reimplemented in other languages with various degrees of effectiveness and various degrees of connection to the original project.

John Hughes (not the filmmaker) gives a great talk about it: https://youtu.be/zi0rHwfiX1Q

1 comments

Thank you very much! I just finished watching the video and am now reading more on QuickCheck. This approach makes a lot of sense.