Packages

c

org.scalatest.enablers

UnitTableAsserting

abstract class UnitTableAsserting extends AnyRef

Class holding lowest priority TableAsserting implicit, which enables TableDrivenPropertyChecks expressions that have result type Unit.

Source
TableAsserting.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UnitTableAsserting
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UnitTableAsserting()

Type Members

  1. abstract class TableAssertingImpl [ASSERTION] extends TableAsserting[ASSERTION]

    Abstract subclass of TableAsserting that provides the bulk of the implementations of TableAsserting's forAll, forEvery and exists.

    Abstract subclass of TableAsserting that provides the bulk of the implementations of TableAsserting's forAll, forEvery and exists.

Value Members

  1. implicit def assertingNatureOfT[T]: TableAsserting[T] { type Result = Unit }

    Provides support of TableAsserting for Unit.

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