org.scalatestplus

scalacheck

package scalacheck

Visibility
  1. Public
  2. All

Type Members

  1. trait CheckerAsserting[T] extends AnyRef

    Supertrait for CheckerAsserting typeclasses, which are used to implement and determine the result type of GeneratorDrivenPropertyChecks's apply and forAll method.

  2. trait Checkers extends ScalaCheckConfiguration

    Trait that contains several “check” methods that perform ScalaCheck property checks.

  3. abstract class ExpectationCheckerAsserting extends UnitCheckerAsserting

    Abstract class that in the future will hold an intermediate priority CheckerAsserting implicit, which will enable inspector expressions that have result type Expectation, a more composable form of assertion that returns a result instead of throwing an exception when it fails.

  4. trait ScalaCheckDrivenPropertyChecks extends Whenever with ScalaCheckConfiguration

    Trait containing methods that faciliate property checks against generated data.

  5. trait ScalaCheckPropertyChecks extends TableDrivenPropertyChecks with ScalaCheckDrivenPropertyChecks

    Trait that facilitates property checks on data supplied by tables and ScalaCheck generators.

  6. abstract class UnitCheckerAsserting extends AnyRef

    Class holding lowest priority CheckerAsserting implicit, which enables GeneratorDrivenPropertyChecks expressions that have result type Unit.

Value Members

  1. object CheckerAsserting extends ExpectationCheckerAsserting

    Companion object to CheckerAsserting that provides two implicit providers, a higher priority one for passed functions that have result type Assertion, which also yields result type Assertion, and one for any other type, which yields result type Unit.

  2. object Checkers extends Checkers

    Companion object that facilitates the importing of Checkers members as an alternative to mixing it in.

  3. object ScalaCheckDrivenPropertyChecks extends ScalaCheckDrivenPropertyChecks

  4. object ScalaCheckPropertyChecks extends ScalaCheckPropertyChecks

    Companion object that facilitates the importing of PropertyChecks members as an alternative to mixing it in.

Ungrouped