QuickCheck is a Haskell library for software testing. It generates test cases and validates them against assertions provided by the programmer.

learn more… | top users | synonyms

1
vote
1answer
55 views

Please provide a simple test-framework example that uses QuickCheck2

I'm struggling a little to get this basic test-framework example to work with QuickCheck2. I get the following error that is mentioned on the above page, due to the example's use of QuickCheck 1. I ...
11
votes
2answers
160 views

How to generate arbitrary instances of a simple type for quickcheck

I have a simple type definition: data Cell = Cell { x :: Int, y :: Int } deriving (Show) I can't use Cell as an input to a quickcheck property, presumably because quickcheck ...
3
votes
3answers
79 views

Using quickCheck

I wrote an implementation for foldl and wanted to check if it worked, I tried some cases and it seems to be working well but I want to make sure. I read about quickCheck and tried it, but I can't ...
12
votes
2answers
192 views

QuickCheck: Arbitrary instances of nested data structures that generate balanced specimens

tl;dr: how do you write instances of Arbitrary that don't explode if your data type allows for way too much nesting? And how would you guarantee these instances produce truly random specimens of your ...
0
votes
1answer
69 views

How to use ByteStrings with QuickTest in DocTest?

How do I define the Arbitrary instance (as stated here) when using doctest and quickcheck? Doctest and Cabal are set up as described here with a separate directory for tests. The doctest line looks ...
11
votes
1answer
226 views

haskell - Average floating point error using QuickCheck

I am using QuickCheck-2.5.1.1 to do QA. I am testing two pure functions gold :: a -> Float and f :: a -> Float, where a instances Arbitrary. Here gold is a reference calculation and f is a ...
4
votes
1answer
87 views

Test.QuickCheck: speed up testing multiple properties for the same type

I am testing a random generator generating instances of my own type. For that I have a custom instance of Arbitrary: complexGenerator :: (RandomGen g) => g -> (MyType, g) instance Arbitrary ...
1
vote
3answers
121 views

Testing not equal in Quickcheck?

I'm new to QuickCheck and can't quite wrap my head around how to use it. Let's say I accidentally implemented a data-type with a Set (instead of a List): data Profile = Profile (Set Strategy) --for ...
2
votes
2answers
216 views

Evaluating function at random arguments using QuickCheck

I am trying to use quickcheck to generate random arguments of a given function (assuming all its types have Arbitrary instance and Show instance) along with the evaluation of the function at those ...
5
votes
1answer
103 views

Idiomatic way to shrink a record in QuickCheck

Suppose I have a record type: data Foo = Foo {x, y, z :: Integer} A neat way of writing an Arbitrary instance uses Control.Applicative like this: instance Arbitrary Foo where arbitrary = Foo ...
3
votes
1answer
129 views

Why is Haskell giving “ambiguous type variable” error?

A past paper problem asked me; to define a function p :: [a] -> [a] that swaps every two items in a list. Your function should swap the first with the second item, the third with the fourth, and so ...
3
votes
1answer
101 views

Display a reason for a failed QuickCheck property and handle exceptions in the tested function

I have a QuickCheck property testing a function f. The property maps the function f over some list xs and checks some element-wise property of the result. In the case of failure, I'd like to display ...
2
votes
1answer
107 views

QuickCheck 2 batch processing

The Batch module of QuickCheck was removed with version 2 (1.2.0.1 still has it). Because of this, I'm always feeling like mapM_-ing multiple tests together is kind of hacky. Am I overlooking the ...
1
vote
0answers
100 views

Haskell quickcheck issue

I am writing a simple test using quickcheck. import Test.QuickCheck f :: Int -> Int f x | x < 0 = (-x) | otherwise = x main = do putStrLn "Testing" ...
1
vote
1answer
124 views

Using a custom generator vs Arbitrary instance in QuickCheck

Here's a simple function. It takes an input Int and returns a (possibly empty) list of (Int, Int) pairs, where the input Int is the sum of the cubed elements of any of the pairs. cubeDecomposition ...
1
vote
2answers
134 views

Convert from Gen (Maybe Int) to Maybe Int

I want to convert a Gen (Maybe Int) to a Maybe Int. I have a function that generates a random Just Int between 1 and 9. I want to use the cell-function but I cant change anything in its ...
4
votes
1answer
168 views

Haskell - Parsec testing with the help of QuickCheck

I'd like to write a tests for a Parsec parser. Here is the example of parser and data structure: data Event = Event { keyEvent :: String } deriving Show parseKey :: Parser Event parseKey = do ...
6
votes
1answer
268 views

Conditional QuickCheck properties

I wrote a QuickCheck property for a function that merges two sorted inputs into a sorted output: prop_merge xs ys = if (sorted xs && sorted ys) then (sorted (merge xs ys)) else True ...
11
votes
3answers
203 views

How to tell QuickCheck to generate only valid list indices for a parameter?

Say I want to write some unit tests for the (!!) function. my_prop xs n = ... I want to restrict n to only valid indexes and I know I could do something like my_prop xs n = (not.null) (drop n xs) ...
1
vote
1answer
132 views

QuickCheck NonEmpty String - listOf

i am learning quickcheck(and haskell too), i have de bellow code: newtype Urls = FN { unFN :: String } deriving Show instance Arbitrary Urls where arbitrary = do protocol <- elements ["http://"] ...
2
votes
1answer
126 views

How to use modifiers with Quickcheck (Positive in my case)

I've a function, rev, that returns some value for a type that is in three typeclasses: rev :: (Integral a, Show a, Read a) => a -> a rev = read . reverse . show I'd like to test some property ...
8
votes
2answers
280 views

typeclass challenge: having both variadic arguments and results

While writing some Arbitrary instances, I implemented a couple of functions with the following quite mechanical pattern: type A = Arbitrary -- to cut down on the size of the annotations below shrink1 ...
6
votes
1answer
321 views

Quickcheck for non-boolean tests

I am using QuickCheck to test my code for some numeric calculations. Basically I have an exact function and several approximations of it that are much more efficient. I'm currently implementing the ...
7
votes
3answers
376 views

Is there a Java alternative to Ploeh's AutoFixture for .Net?

I am looking for a Java tool that would create anonymous variables (variables whose value I don't care about) in my tests, similar to AutoFixture in .Net. Here is a link to AutoFixture's readme, which ...
5
votes
1answer
260 views

Testing Parsec parsers by generating inputs with QuickCheck

I'd like to write tests for a suite of Parsec parsers. Here's a simple example of a parser I want to test with QuickCheck: identifier = do c <- letter cs <- many (alphaNum <|> oneOf ...
0
votes
0answers
57 views

What is the best library between QuichCheck for java and JCheck? [closed]

QuickCheck looks kind of actively maintained while JCheck hasn't been updated for two years. On the other hand JCheck seems better in the sense that its arbitrary method takes a random object and a ...
0
votes
1answer
196 views

Quick Check for CoffeeScript

Does it exist? I can't find it and it isn't listed on wikipedia. (which means it doesn't exist :) ) I know node.js has it. Not sure if writing my node app in coffeescript and applying quick check ...
4
votes
0answers
129 views

“cookbook” for converting from QuickCheck1 to QuickCheck2?

Is there a cookbook available for converting from QuickCheck1 to QuickCheck2? As some examples, defaultConfig (replaced by Args) and trivial were removed and CoArbitrary introduced. I did read the ...
0
votes
1answer
54 views

Generate triple (Network.HTTP.ResponseCode) using an instance of Arbitrary

I have a function that takes a ResponseCode from Network.HTTP. In order to test it with QuickCheck, I wanted to write an instance of Arbitrary for ResponseCode. (In case you don't know, a ResponseCode ...
2
votes
3answers
168 views

Haskell Matrices testing using QuickCheck

I'm creating a Matrix module in Haskell and I want to use QuickCheck to test some properties of my code. Specifically I want to generate random matrices that have an associated inverse. The following ...
2
votes
1answer
141 views

How to make Data.List.Vector a member of Arbitrary easily?

I am using the Data.List.Vector in my program, and now I would like to use quickCheck for it. However, there is no instance for that. Since there already is an arbitrary for [Double], I thought I ...
5
votes
2answers
147 views

Automatically gather all quickChecks

Being a fan of quickCheck, I have a lot of prop_something_something = ... throughout my program. For convenience, to easily run all of them, I define runchecks = do quickCheck ...
11
votes
1answer
726 views

Controlling how test data is generated in QuickCheck

I wrote an algorithm to find a solution to the subset sum problem in Haskell. The signature is subsetSum :: (Ord a, Num a) => [a] -> a -> Maybe [a] QuickCheck seems to be a good fit to ...
7
votes
2answers
203 views

Is there a monadic version of Arbitrary to use with QuickCheck?

When I want to test pure code using QuickCheck I often have to write an Arbitrary instance. To test monadic code, I can use Test.QuickCheck.Monadic as described in this article. My question is: Is ...
1
vote
1answer
100 views

Memory leakage when moving from DiffArray to Data.Vector [Solved]

After changing the data structure from diffarray to vector the memory blows up (grows infinitely) during one of the QuickCheck tests. The code is hosted at GitHub. The dev branch contains the ill code ...
4
votes
3answers
420 views

SIMPLE random number generation

I'm writing this after a good while of frustrating research, and I'm hoping someone here can enlighten me about the topic. I want to generate a simple random number in a haskell function, but alas, ...
12
votes
2answers
387 views

How can I test a higher-order function using QuickCheck?

I have a higher-order function that I want to test, and one of the properties I want to test is what it does with the functions that are passed in. For purposes of illustration, here is a contrived ...
7
votes
2answers
173 views

How can I prevent QuickCheck from catching all exceptions?

The QuickCheck library seems to catch all exceptions that are thrown when testing a property. In particular, this behavior prevents me from putting a time limit on the entire QuickCheck computation. ...
0
votes
1answer
63 views

What features does scalacheck add over quickcheck?

All the scalacheck stuff says: has since evolved and been extended with features not found in Haskell QuickCheck So, what are those features?
2
votes
3answers
452 views

How do I emulate Lisp (apply) or (curry) in Rust?

I'm porting QuickCheck to Rust, and I've written everything except for_all. I'm not sure what the type signature should be, I just know that in general, for_all will accept a property lambda and a ...
6
votes
2answers
279 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 ...
29
votes
2answers
746 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] ...
7
votes
1answer
239 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 ...
13
votes
1answer
173 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 ...
8
votes
2answers
211 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 ...
-2
votes
2answers
229 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
145 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 ...
0
votes
1answer
195 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 ...
13
votes
1answer
451 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 ...
10
votes
1answer
260 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 ...

1 2