object InspectorAsserting extends UnitInspectorAsserting
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
.
- Source
- InspectorAsserting.scala
- Alphabetic
- By Inheritance
- InspectorAsserting
- UnitInspectorAsserting
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
abstract
class
InspectorAssertingImpl
[T] extends InspectorAsserting[T]
Abstract subclass of
InspectorAsserting
that provides the bulk of the implementations ofInspectorAsserting
methods.Abstract subclass of
InspectorAsserting
that provides the bulk of the implementations ofInspectorAsserting
methods.- Definition Classes
- UnitInspectorAsserting
Value Members
-
implicit
def
assertingNatureOfAssertion: InspectorAsserting[Assertion] { type Result = org.scalatest.Assertion }
Provides an implicit
InspectorAsserting
instance for typeAssertion
, enabling inspector syntax that has result typeAssertion
.Provides an implicit
InspectorAsserting
instance for typeAssertion
, enabling inspector syntax that has result typeAssertion
. -
implicit
def
assertingNatureOfT[T]: InspectorAsserting[T] { type Result = Unit }
Provides an implicit
InspectorAsserting
instance for any type that did not match a higher priority implicit provider, enabling inspector syntax that has result typeUnit
.Provides an implicit
InspectorAsserting
instance for any type that did not match a higher priority implicit provider, enabling inspector syntax that has result typeUnit
.- Definition Classes
- UnitInspectorAsserting