Tagged Questions

23
votes
1answer
516 views

How do I get good (small) shrinks out of QuickCheck?

I'm trying to run QuickCheck on some nested lists, something that looks like this: type Constraint = Text data Value = Value [Constraint] data Literal = Literal Value [Value] type Formula = [Literal] ...
19
votes
1answer
941 views

What's new in QuickCheck 2?

What are the major differences between QuickCheck 1 and QuickCheck 2? From looking at Haddock docs I can see that it is split across more modules, coarbitrary has been replaced by the new Fun type and ...
16
votes
2answers
829 views

Testing IO actions with Monadic QuickCheck

Can anyone give me a brief example of testing IO actions using Monadic QuickCheck?
14
votes
1answer
513 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 ...
14
votes
7answers
2k views

Have you used Quickcheck in a real project

Quickcheck and its variants (even there is one in java), seems to be interesting. However, apart from academic interest, is it really useful in a real application testing (Eg. a GUI application or ...
13
votes
1answer
140 views

What is the name of this generalization of idempotence?

Lots of commonly useful properties of functions have concise names. For example, associativity, commutativity, transitivity, etc. I am making a library for use with QuickCheck that provides shorthand ...
9
votes
2answers
218 views

Where do QuickCheck instances belong in a cabal package?

I have a cabal package that exports a type NBT which might be useful for other developers. I've gone through the trouble of defining an Arbitrary instance for my type, and it would be a shame to not ...
9
votes
2answers
290 views

Use QuickCheck by generating primes

Background For fun, I'm trying to write a property for quick-check that can test the basic idea behind cryptography with RSA. Choose two distinct primes, p and q. Let N = p*q e is some number ...
8
votes
2answers
123 views

Find the value that failed for quickcheck

When a value fails a QuickCheck'd test, I'd like to use it for debugging. Is there any way I can do something like: let failValue = quickCheck' myTest in someStuff failValue If my data was readable ...
8
votes
5answers
611 views

verboseCheck in QuickCheck 2?

The function verboseCheck from QuickCheck 1 seems to be absent in QuickCheck 2 (or at least, I can't find it). Is there any other way to show which values are used during testing?
7
votes
1answer
135 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 ...
7
votes
1answer
118 views

How to get Haskell QuickCheck 2.4 to increase # tests?

Okay, as I learned via my previous question, the RWH book is already out of date for QuickCheck. And despite all the posts I've read that tell me how incredibly simple it is to use QuickCheck, I ...
7
votes
3answers
251 views

Generating a lists of a specific length with Haskell's QuickCheck

-- 3 (find k"th element of a list) element_at xs x = xs !! x prop_3a xs x = (x < length xs && x >= 0) ==> element_at xs (x::Int) == (xs !! x::Int) When prop_3a is ran through ...
7
votes
1answer
244 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 ...
6
votes
1answer
91 views

Haskell QuickCheck2 using ByteString?

The RWH books says that to get ByteString support, I need to add: instance Arbitrary B.ByteString where arbitrary = fmap B.pack arbitrary coarbitrary = coarbitrary . B.unpack But my GHC ...
5
votes
1answer
282 views

How do you override Haskell type class instances provided by package code?

I have some old Haskell code that includes QuickCheck test cases. Newer versions of QuickCheck (I've just upgraded to 2.4.0.1) include type class instances for Arbitrary Word8 and others. These did ...
5
votes
2answers
182 views

How to display a reason of a failed test property with quickcheck?

What is the best practice to display reasons for a failed property test when it is tested via QuickCheck? Consider for example: prop a b = res /= [] where (res, reason) = checkCode a b ...
5
votes
3answers
695 views

How to use 'oneof' in quickCheck (Haskell)

I am trying to write a prop that changes a Sudoku and then checks if it's still valid. However, I am not sure how to use the "oneof"-function properly. Can you give me some hints, please? ...
4
votes
1answer
170 views

Show-ing functions used in QuickCheck properties

I'm trying to write a QuickCheck property that takes one or more functions as input. To keep things simple, consider a property to check that function composition is equivalent to successive function ...
4
votes
1answer
167 views

Cabal installing quickcheck version problem

I'm trying to install quickcheck 2 via cabal on Ubuntu 10.04. No matter what I try to do, I always end up with the following: $ cabal list quickcheck * QuickCheck Synopsis: Automatic testing of ...
4
votes
1answer
379 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
200 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 [] _ = [] ...
3
votes
2answers
64 views

QuickCheck exit status on failures, and cabal integration

I'm trying to understand how to integrate some quickcheck tests with cabal. This gist suggests that the quickCheck function returns non-zero status on failure, but I am not getting that behavior, so ...
3
votes
1answer
287 views

Generating a list of lists of Int with QuickCheck

I'm working through Real World Haskell one of the exercises of chapter 4 is to implement an foldr based version of concat. I thought this would be a great candidate for testing with QuickCheck since ...
2
votes
3answers
227 views

Haskell QuickCheck Unique Random Number Generation

Does anyone know exactly how to define a generator in Haskell using QuickCheck such that chosen elements are picked only ONCE? I've gotten as far as realizing that I might need a "Gen (Maybe ...
2
votes
1answer
324 views

QuickCheck: defining Arbitrary instance in terms of other Arbitraries

I'm using QuickCheck 1 and I've got the following data types: data A = ... instance Arbitrary A where ... data B = ... instance Arbitrary B where ... data C = C A B Now I'd like to define an ...
2
votes
2answers
188 views

Is there a good way to QuickCheck Happstack.State methods?

I have a set of Happstack.State MACID methods that I want to test using QuickCheck, but I'm having trouble figuring out the most elegant way to accomplish that. The problems I'm running into are: ...
1
vote
0answers
81 views

How to load example in Djinn/UU/Examples/Equality.hs?

After cabal install Djinn which is using QuickCheck, the executable file is in ./.cabal/bin/djinn. then I copy the executable to the directory Downloads/Djinn/UU/Examples/ want to run example ...
1
vote
2answers
121 views

Avoiding duplicated QuickCheck properties

I'm starting to learn Haskell by doing the 99 Haskell problems. http://www.haskell.org/haskellwiki/H-99:_Ninety-Nine_Haskell_Problems I'd like to write tests for each program/function using ...
1
vote
2answers
140 views

How to use quickcheck in main

I am writing a test for a binary search function I wrote. module Tests where import Data.List (sort) import Test.QuickCheck import BinarySearch (binarySearch) prop_equals_elem x xs = (binarySearch ...
1
vote
1answer
106 views

How to write a function to fire quickCheck prop_xxx?

I am using QuickCheck v1. Here is a simple prop_xxx defined as below: prop_foo :: (Num a) =>[a] -> Bool prop_foo xs = (reverse.reverse) xs == id xs This can be tested in GHCi correctly: ...
0
votes
1answer
95 views

where is function generate in Haskell Platform 2011.2.0.1

would like to print a random number between 0 and 10, but generate seems undefined can not be compiled, the following code edited from example i am using Haskell Platform 2011.2.0.1 Updated: import ...
0
votes
3answers
285 views

It is a member of the hidden packageQuickCheck-1.2.0.0, How to load hs file

installed QuickCheck, i install again cabal install QuickCheck-1.2.0.0 and load again and has error Could not find module Test.QuickCheck.Batch': It is a member of the hidden ...
-2
votes
2answers
142 views

How to falsify commutativity of function composition with QuickCheck

What is ex that should be pass to CoArbitrary of the following code? How to use Function in Test.QuickCheck.Function to represent f and g in proposition? is it correct to write , if not, how? where ...
-3
votes
2answers
95 views

How to print generated result from arbitrary?

quickCheckResult only accept something -> Bool, then i mimic some example, pass [Colour] -> Bool what is function of the bracket of [Colour]? why not Colour -> Bool? How to pass ...