-
-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
As a follow up to scalatest/scalatest#251, ScalaCheckDrivenPropertyChecks isn't good for nested forAlls and is also missing features like forAllNoShrink.
It seems like Checkers is what I want anyway, to explicitly build up a Prop, then check it. But it currently doesn't work with normal scalatest assertions like
check {
forAll { a: Int =>
foo(a) shouldBe 42
}
}This currently throws a compile-time error:
No implicit view available from org.scalatest.Assertion => org.scalacheck.Prop.
It would be nice to augment Checkers or provide a separate class to include support for normal scalatest assertions.
Metadata
Metadata
Assignees
Labels
No labels