InspectorAsserting

Companion object to InspectorAsserting 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.

Companion:
class
class Object
trait Matchable
class Any

Type members

Inherited classlikes

abstract class InspectorAssertingImpl[T, R] extends InspectorAsserting[T, R]

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

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

Inherited from:
UnitInspectorAsserting

Implicits

Implicits

Provides an implicit InspectorAsserting instance for type Assertion, enabling inspector syntax that has result type Assertion.

Provides an implicit InspectorAsserting instance for type Assertion, enabling inspector syntax that has result type Assertion.

implicit def assertingNatureOfFutureAssertion(implicit execCtx: ExecutionContext): InspectorAsserting[Future[Assertion], Future[Assertion]]

Inherited implicits

implicit def assertingNatureOfT[T]: InspectorAsserting[T, Unit]

Provides an implicit InspectorAsserting instance for any type that did not match a higher priority implicit provider, enabling inspector syntax that has result type Unit.

Provides an implicit InspectorAsserting instance for any type that did not match a higher priority implicit provider, enabling inspector syntax that has result type Unit.

Inherited from:
UnitInspectorAsserting