Capture Nullable Matcher
data class CaptureNullableMatcher<T : Any>(val captureList: MutableList<T?>, val argumentType: KClass<*>) : Matcher<T> , CapturingMatcher, TypedMatcher, EquivalentMatcher
Content copied to clipboard
Matcher capturing all results to the list. Allows nulls
Constructors
Link copied to clipboard
fun <T : Any> CaptureNullableMatcher(captureList: MutableList<T?>, argumentType: KClass<*>)
Content copied to clipboard