CollectionArgMatchers

Contains matchers for collections

Types

Link copied to clipboard
class ContentDeepEquals<T>(val array: Array<T>) : ArgMatcher<Array<T>>

Matches an array that is equal to array with contentDeepEquals.

Link copied to clipboard
@DelicateMokkeryApi
class ContentEquals(array: Any) : ArgMatcher<Any>

Matches an array that has the same content as array. It accepts Any for convenience and should only receive arrays.

Link copied to clipboard
class ValueInIterable<T>(val iterable: Iterable<T>) : ArgMatcher<T>
Link copied to clipboard
class ValueNotInIterable<T>(val iterable: Iterable<T>) : ArgMatcher<T>