While using scalacheck if we test any property with forAll then we only get reported failed test inputs and none passed test inputs.
scala> import org.scalacheck.Prop.forAll
scala> val propConcatLists = forAll { (l1: List[Int], l2: List[Int]) =>
l1.size + l2.size == (l1 ::: l2).size }
scala> propConcatLists.check
+ OK, passed 100 tests.
Is there any way to report all the random test inputs given by forAll to respective property test?