Open
Description
Motivation
I have been using CollectionAssert
for quite some time but when I want to check whether the contents of a ReadOnlyCollection<T>
match my expectation a cannot use CollectionAssert
because many generic collection interfaces do not inherit from ICollection
.
Proposal
Add new generic overloads of all methods to take IReadOnlyCollection<T>
or IEnumerable<T>
instead of ICollection
.