Re: [Haskell-cafe] Unit testing in Haskell

2005-01-12 Thread Matthew Roberts
I find that I don't need unit testing frameworks. A few features of Haskell and the associated interpreters (ghci and hugs) combine to make unit testing as you go really easy. I just write a few tests for each function I write and then some more module wide tests once the whole module is

Re: [Haskell-cafe] Unit testing in Haskell

2005-01-12 Thread Isaac Jones
Matthew Roberts [EMAIL PROTECTED] writes: I find that I don't need unit testing frameworks. A few features of Haskell and the associated interpreters (ghci and hugs) combine to make unit testing as you go really easy. I just write a few tests for each function I write and then some more

[Haskell-cafe] Unit testing in Haskell

2005-01-11 Thread Dmitri Pissarenko
Hello! When programming in an imperative language like Java, unit tests are a very important development tool IMHO. I want to try out unit testing in Haskell and wonder what experienced Haskellers think about unit testing in Haskell in general and the hUnit testing framework (see URL below) in

Re: [Haskell-cafe] Unit testing in Haskell

2005-01-11 Thread padiolea
Hello! When programming in an imperative language like Java, unit tests are a very important development tool IMHO. I want to try out unit testing in Haskell and wonder what experienced Haskellers think about unit testing in Haskell in general and the hUnit testing framework (see URL