Skip to content
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.

Latest commit

 

History

History
55 lines (43 loc) · 1.63 KB

README.md

File metadata and controls

55 lines (43 loc) · 1.63 KB

haskell-testing-stub

IMPORTANT: This repository is now hosted on BitBucket.

This stub project demonstrates how to organize code tests and benchmarks in a Haskell project. It shows how to:

  • separate tests and benchmarks from the actual code, so that users don't need to install testing and benchmarking libraries
  • use cabal to automate testing and benchmarking
  • use tasty to create a coherent test suite containing both HUnit and QuickCheck tests
  • create QuickCheck tests that run with many different test data sets.
  • use criterion to create benchmarks

Visit my blog for a detailed discussion of code testing and benchmarking in Haskell. See also comments in the source code.

Running tests

Execute these commands to compile and run tests:

cabal configure --enable-tests
cabal build
cabal test

Running benchmarks

Execute these commands to compile and run benchmarks:

cabal configure --enable-benchmarks
cabal build
cabal bench

Compiling the library

Execute these commands to install the library without benchmarking and testing code:

cabal configure
cabal build
cabal install