Something that would just make writing test simpler: ```kotlin /** * Matches a collection with a size that is equal to [size]. */ fun hasSize(size: Int) = has(Collection<Any>::size, equalTo(size)) ```
Something that would just make writing test simpler: