Packages

abstract class CheckerAssertingImpl[T] extends CheckerAsserting[T]

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

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

Instance Constructors

  1. new CheckerAssertingImpl()

Type Members

  1. abstract type Result

    The result type of the check method.

    The result type of the check method.

    Definition Classes
    CheckerAsserting

Value Members

  1. def check(p: Prop, prms: Parameters, prettifier: Prettifier, pos: Position, argNames: Option[List[String]] = None): Result

    Check the given Prop and Test.Parameters by calling ScalaCheck's Test.check.

    Check the given Prop and Test.Parameters by calling ScalaCheck's Test.check. If the check succeeds, call indicateSuccess, else call indicateFailure.

    p

    the Prop to be used to check

    prms

    the Test.Parameters to be used to check

    prettifier

    the Prettifier to be used to prettify error message

    pos

    the Position of the caller site

    argNames

    the list of argument names

    returns

    the Result of the property check.

    Definition Classes
    CheckerAssertingImplCheckerAsserting