Skip to content

runtologist/scalacheck-magnolia

 
 

Repository files navigation

scalacheck-magnolia

Maven Central

scalacheck-magnolia performs generic derivation of scalacheck Arbitrary instances for product and sum types, i.e. case classes and ADTs, using Magnolia. Much of the code was inspired by scalacheck-shapeless, which I've found to work reliably, but cause huge compile time increases, especially for deeply nested case classes.

Usage

Add to your build.sbt:

libraryDependencies += "com.mrdziuban" %% "scalacheck-magnolia" % "0.0.2"

This will pull in scalacheck 1.14.0 and magnolia 0.10.0.

To materialize Arbitrary instances for your case classes or sealed traits, import com.mrdziuban.ScalacheckMagnolia._. Magnolia can derive Arbitrary instances for case classes

import com.mrdziuban.ScalacheckMagnolia._
import org.scalacheck.Arbitrary

case class Test(i: Int, b: Boolean, s: String)

implicitly[Arbitrary[Test]]

as well as for sealed traits

sealed trait Foo
case object Bar extends Foo
case class Baz(s: String) extends Foo

implicitly[Arbitrary[Foo]]

It can be used in scalacheck property tests like so:

import org.scalacheck.Prop.forAll

case class Test(i: Int, b: Boolean, s: String)

forAll((t: Test) => true /* check some properties of Test */)

License

Released under the Apache 2.0 license. See the LICENSE file for more details.

About

Scalacheck Arbitrary derivation using magnolia

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Scala 100.0%