Packages

  • package root
    Definition Classes
    root
  • package zio
    Definition Classes
    root
  • package test

    _ZIO Test_ is a featherweight testing library for effectful programs.

    _ZIO Test_ is a featherweight testing library for effectful programs.

    The library imagines every spec as an ordinary immutable value, providing tremendous potential for composition. Thanks to tight integration with ZIO, specs can use resources (including those requiring disposal), have well- defined linear and parallel semantics, and can benefit from a host of ZIO combinators.

    import zio.test._
    import zio.Clock.nanoTime
    
    object MyTest extends ZIOSpecDefault {
      def spec = suite("clock")(
        test("time is non-zero") {
          for {
            time <- Live.live(nanoTime)
          } yield assertTrue(time >= 0L)
        }
      )
    }
    Definition Classes
    zio
  • package refined
    Definition Classes
    test
  • package types
    Definition Classes
    refined
  • AllTypesInstances
  • CharInstances
  • DigitInstances
  • NetInstances
  • NumericInstances
  • StringInstance
  • TimeInstances
  • all
  • char
  • digit
  • net
  • numeric
  • string
  • time
t

zio.test.refined.types

DigitInstances

trait DigitInstances extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DigitInstances
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. implicit val md5Arbitrary: DeriveGen[eu.timepit.refined.types.all.MD5]
  2. val md5Gen: Gen[Any, eu.timepit.refined.types.all.MD5]
  3. implicit val sha1Arbitrary: DeriveGen[eu.timepit.refined.types.all.SHA1]
  4. val sha1Gen: Gen[Any, eu.timepit.refined.types.all.SHA1]
  5. implicit val sha224Arbitrary: DeriveGen[eu.timepit.refined.types.all.SHA224]
  6. val sha224Gen: Gen[Any, eu.timepit.refined.types.all.SHA224]
  7. implicit val sha256Arbitrary: DeriveGen[eu.timepit.refined.types.all.SHA256]
  8. val sha256Gen: Gen[Any, eu.timepit.refined.types.all.SHA256]
  9. implicit val sha384Arbitrary: DeriveGen[eu.timepit.refined.types.all.SHA384]
  10. val sha384Gen: Gen[Any, eu.timepit.refined.types.all.SHA384]
  11. implicit val sha512Arbitrary: DeriveGen[eu.timepit.refined.types.all.SHA512]
  12. val sha512Gen: Gen[Any, eu.timepit.refined.types.all.SHA512]