Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package scalatest

    ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.

    ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.

    Definition Classes
    org
  • package enablers
    Definition Classes
    scalatest
  • abstract class UnitInspectorAsserting extends AnyRef

    Class holding lowest priority InspectorAsserting implicit, which enables inspector expressions that have result type Unit.

    Class holding lowest priority InspectorAsserting implicit, which enables inspector expressions that have result type Unit.

    Definition Classes
    enablers
  • InspectorAssertingImpl

abstract class InspectorAssertingImpl[T] extends InspectorAsserting[T]

Abstract subclass of InspectorAsserting that provides the bulk of the implementations of InspectorAsserting methods.

Source
InspectorAsserting.scala
Linear Supertypes
InspectorAsserting[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InspectorAssertingImpl
  2. InspectorAsserting
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InspectorAssertingImpl()

Type Members

  1. abstract type Result
    Definition Classes
    InspectorAsserting

Value Members

  1. def forAll[E](xs: GenTraversable[E], original: Any, shorthand: Boolean, prettifier: Prettifier, pos: Position)(fun: (E) ⇒ T): Result

    Implementation method for Inspectors forAll syntax.

    Implementation method for Inspectors forAll syntax.

    Definition Classes
    InspectorAssertingImplInspectorAsserting
  2. def forAtLeast[E](min: Int, xs: GenTraversable[E], original: Any, shorthand: Boolean, prettifier: Prettifier, pos: Position)(fun: (E) ⇒ T): Result

    Implementation method for Inspectors forAtLeast syntax.

    Implementation method for Inspectors forAtLeast syntax.

    Definition Classes
    InspectorAssertingImplInspectorAsserting
  3. def forAtMost[E](max: Int, xs: GenTraversable[E], original: Any, shorthand: Boolean, prettifier: Prettifier, pos: Position)(fun: (E) ⇒ T): Result

    Implementation method for Inspectors forAtMost syntax.

    Implementation method for Inspectors forAtMost syntax.

    Definition Classes
    InspectorAssertingImplInspectorAsserting
  4. def forBetween[E](from: Int, upTo: Int, xs: GenTraversable[E], original: Any, shorthand: Boolean, prettifier: Prettifier, pos: Position)(fun: (E) ⇒ T): Result

    Implementation method for Inspectors forBetween syntax.

    Implementation method for Inspectors forBetween syntax.

    Definition Classes
    InspectorAssertingImplInspectorAsserting
  5. def forEvery[E](xs: GenTraversable[E], original: Any, shorthand: Boolean, prettifier: Prettifier, pos: Position)(fun: (E) ⇒ T): Result

    Implementation method for Inspectors forEvery syntax.

    Implementation method for Inspectors forEvery syntax.

    Definition Classes
    InspectorAssertingImplInspectorAsserting
  6. def forExactly[E](succeededCount: Int, xs: GenTraversable[E], original: Any, shorthand: Boolean, prettifier: Prettifier, pos: Position)(fun: (E) ⇒ T): Result

    Implementation method for Inspectors forExactly syntax.

    Implementation method for Inspectors forExactly syntax.

    Definition Classes
    InspectorAssertingImplInspectorAsserting
  7. def forNo[E](xs: GenTraversable[E], original: Any, shorthand: Boolean, prettifier: Prettifier, pos: Position)(fun: (E) ⇒ T): Result

    Implementation method for Inspectors forNo syntax.

    Implementation method for Inspectors forNo syntax.

    Definition Classes
    InspectorAssertingImplInspectorAsserting