package scalacheck
Provides functionality for converting legacy ScalaCheck generators to ZIO
Test generators to support upgrading to ZIO Test without having to
reimplement existing generators. To use it import this module and then call
toGenZIO on any existing ScalaCheck generator. For example:
import org.scalacheck.Arbitrary import zio._ import zio.test._ import zio.test.scalacheck._ val anyInt: Gen[Random with Sized, Int] = Arbitrary.arbitrary[Int].toGenZIO
Linear Supertypes
Type Members
- implicit final class ScalaCheckGenSyntax[A] extends AnyVal