scalaprops.Check.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalaprops-core_2.12.0-RC1 Show documentation
Show all versions of scalaprops-core_2.12.0-RC1 Show documentation
property based testing library for Scala
The newest version!
package scalaprops
import scalaz.Endo
final case class Check(prop: Property, paramEndo: Endo[Param] = Param.id) {
def toProperties[A](id: A): Properties[A] =
Properties.single(id, this)
def ignore(reason: String): Check =
copy(prop = prop.ignore(reason))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy