CapturingNullableSlotMatcher

data class CapturingNullableSlotMatcher<T : Any>(val captureSlot: CapturingSlot<T?>, val argumentType: KClass<*>) : Matcher<T> , CapturingMatcher, TypedMatcher, EquivalentMatcher

Matcher capturing one last nullable value to the CapturingSlot

Constructors

Link copied to clipboard
constructor(captureSlot: CapturingSlot<T?>, argumentType: KClass<*>)

Properties

Link copied to clipboard
open override val argumentType: KClass<*>
Link copied to clipboard

Functions

Link copied to clipboard
open override fun capture(arg: Any?)
Link copied to clipboard
open override fun checkType(arg: Any?): Boolean
Link copied to clipboard
open override fun equivalent(): Matcher<Any>
Link copied to clipboard
open override fun match(arg: T?): Boolean
Link copied to clipboard
open fun substitute(map: Map<Any, Any>): Matcher<T>
Link copied to clipboard
open override fun toString(): String