Packages

object CheckerAsserting extends UnitCheckerAsserting

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.

Source
CheckerAsserting.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CheckerAsserting
  2. UnitCheckerAsserting
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract class CheckerAssertingImpl [T] extends CheckerAsserting[T]

    Abstract subclass of CheckerAsserting that provides the bulk of the implementations of CheckerAsserting check method.

    Abstract subclass of CheckerAsserting that provides the bulk of the implementations of CheckerAsserting check method.

    Definition Classes
    UnitCheckerAsserting

Value Members

  1. implicit def assertingNatureOfAssertion: CheckerAsserting[Assertion] { type Result = org.scalatest.Assertion }

    Provides support of CheckerAsserting for Assertion.

    Provides support of CheckerAsserting for Assertion. Returns Succeeded when the check succeeds, but throw GeneratorDrivenPropertyCheckFailedException when check fails.

  2. implicit def assertingNatureOfT[T]: CheckerAsserting[T] { type Result = Unit }

    Provides support of CheckerAsserting for Unit.

    Provides support of CheckerAsserting for Unit. Do nothing when the check succeeds, but throw GeneratorDrivenPropertyCheckFailedException when check fails.

    Definition Classes
    UnitCheckerAsserting