Tagged Questions

7
votes
1answer
129 views

Haskell: How to test a (reactive) FSM with quickcheck?

I wrote a finite state machine module for a little soccer game I'm currently working at. It provides an interface for setting up an FSM (basically its states and transitions). For each state, you can ...
4
votes
1answer
367 views

Testing QuickCheck properties against multiple types?

I have a type class Atomic, which defines functions for converting certain types to/from a wrapper value (Atom). I'd like to define a QuickCheck property which states: "for all instances of Atomic, ...
4
votes
1answer
194 views

Make Test.QuickCheck.Batch use a default type for testing list functions

I am testing a function called extractions that operates over any list. extractions :: [a] -> [(a,[a])] extractions [] = [] extractions l = extract l [] where extract [] _ = [] ...