I am fairly new to ScalaCheck and somehow I want to generate a list of distinct values (i.e. a set). With my approach the values are not unique.
val valueList: Gen[List[Int]] = Gen.ListOf(Arbitrary.arbitrary[Int])
What are the possible ways to create a list with unique values/a set? Maybe with using suchThat
or distinct
?
Crude but effective:
If you wanted a set of a particular size, you could do something like
(It's worth noting that retryUntil can be fragile, especially as n grows relative to the number of commonly generated values (e.g. for
Int
Scalacheck generates 0, +/- 1, etc. fairly frequently))And of course, since there's an
org.scalacheck.util.Buildable
instance forSet