Using scalacheck, one can define some Properties as such:
object MyProps extends Properties("MyProps") {
property("myProp1") = forAll { (n:Int, m:Int) =>
n+m == m+n
}
property("myProp2") = forAll { ... }
property("myProp3") = forAll { ... }
}
I would like to override the default minimum number of successful tests (minSuccessfulTests) for just one single property, for example just for "myProp2"
.
Is there a way to do this?