Packages

  • package root
    Definition Classes
    root
  • package zio
    Definition Classes
    root
  • package test
    Definition Classes
    zio
  • 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.

    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
    Definition Classes
    test
  • ScalaCheckGenSyntax
p

zio.test

scalacheck

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

  1. implicit final class ScalaCheckGenSyntax[A] extends AnyVal

Inherited from AnyRef

Inherited from Any

Ungrouped