Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomer-ben-david/9382145c2f71553f669a to your computer and use it in GitHub Desktop.
Save tomer-ben-david/9382145c2f71553f669a to your computer and use it in GitHub Desktop.
generate list of objects with scalacheck
val listOfObjectsGen: Gen[List[MyCaseClass]] =
Gen.containerOf[List, MyCaseClass](myCaseClassGen)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment