I'm trying to implement a simple property check but Scalacheck is ignoring my generators. What I'm doing wrong here?
object AlgorithmTest extends Properties("Algorithm") {
property("Test") = forAll (Gen.choose(0,10)) (n => n>=0 & n<10)
}
and this is the result in SBT
[info] ! Algorithm.Test: Falsified after 12 passed tests. [info] >
ARG_0: -1 [error] Failed: : Total 1, Failed 1, Errors 0, Passed 0,
Skipped 0
It looks like the Shrink instance which is passed to the
forAll
method is not using the generator when searching for smaller counter-examples. If you change your property to:Then it should properly fail with:
One way to visualize the Shrink values is to use the
Prop.collect
method:Then the collected values look like:
Where you can see that -1 has been used during the shrinking process.