ScalaTest is brought to you by:
c

org.scalatestplus.scalacheck

ExpectationCheckerAsserting

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.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExpectationCheckerAsserting
  2. UnitCheckerAsserting
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ExpectationCheckerAsserting()

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 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