Capture Matcher
data class CaptureMatcher<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.
Constructors
Link copied to clipboard
fun <T : Any> CaptureMatcher(captureList: MutableList<T>, argumentType: KClass<*>)
Content copied to clipboard