
cats.laws.discipline.ApplyTests.scala Maven / Gradle / Ivy
The newest version!
package cats
package laws
package discipline
import org.scalacheck.Arbitrary
import org.scalacheck.Prop
import Prop._
trait ApplyTests[F[_]] extends FunctorTests[F] {
def laws: ApplyLaws[F]
def apply[A: Arbitrary, B: Arbitrary, C: Arbitrary](implicit
ArbFA: Arbitrary[F[A]],
ArbFAtoB: Arbitrary[F[A => B]],
ArbFBtoC: Arbitrary[F[B => C]],
EqFA: Eq[F[A]],
EqFC: Eq[F[C]]
): RuleSet = {
new DefaultRuleSet(
name = "apply",
parent = Some(functor[A, B, C]),
"apply composition" -> forAll(laws.applyComposition[A, B, C] _))
}
}
object ApplyTests {
def apply[F[_]: Apply]: ApplyTests[F] =
new ApplyTests[F] { def laws: ApplyLaws[F] = ApplyLaws[F] }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy