Closed johanhaleby closed 1 year ago
Hi,
I'd like to be able to do assertions on sequences. For example:
val seq = sequenceOf("one", "two") assertThat(seq).containsOnly("one", "two")
But this doesn't compile unless I convert it to an Iterable. Would it make sense to explicitly support Sequences?
Iterable
Yeah I think that's a good idea. We could have all the same assertions from Iterable
Hi,
I'd like to be able to do assertions on sequences. For example:
But this doesn't compile unless I convert it to an
Iterable
. Would it make sense to explicitly support Sequences?