Tagged Questions

HUnit is a unit testing framework for Haskell, similar to JUnit for Java.

learn more… | top users | synonyms

13
votes
1answer
470 views

Current state of integrating unit tests with Haskell's Cabal?

When i google for how to integrate unit tests with cabal files, i either find http://www.haskell.org/haskellwiki/How_to_write_a_Haskell_program which does not seem to describe the integration of ...
7
votes
1answer
233 views

HUnit/QuickCheck with Continuous Integration

Are there any extensions to HUnit or QuickCheck that allow a continuous integration system like Bamboo to do detailed reporting of test results? So far, my best idea is to simply trigger the tests ...
3
votes
1answer
196 views

Interaction between optimizations and testing for error calls

I have a function in a module that looks something like this: module MyLibrary (throwIfNegative) where throwIfNegative :: Integral i => i -> String throwIfNegative n | n < 0 = error ...
3
votes
1answer
159 views

How to work with assertEqual with parameterized types

I'm trying to do the exercises in Real World Haskell in a TDD fashion, using HUnit. As you probably guessed I haven't gotten far yet so I'm an absolute beginner when it comes to Haskell. Given the ...
2
votes
1answer
75 views

Cannot import HUnit into ghci

I've just installed HUnit, and want to import it into ghci. Prelude> import HUnit <no location info>: Could not find module `HUnit': Use -v to see a list of the files searched ...
2
votes
1answer
73 views

HUnit not importing on Mac

On a fresh install of Haskell Platform for Max OSX, the following code fails on import Test.HUnit when run using the runghc interpreter. {-- - Save this file as Main.hs and run with % runghc Main.hs ...
2
votes
2answers
145 views

HUnit TestCase with a Type Error

I've written a function similar to LISP's flatten: data NestedList a = Elem a | List [NestedList a] flatten :: NestedList a -> [a] flatten (Elem x) = [x] flatten (List xs) = concatMap flatten xs ...