willowtreeapps / assertk

assertions for kotlin inspired by assertj
MIT License
760 stars 85 forks source link

Add containsExactlyInAnyOrder(expected: Iterable<T>) support #476

Open yahorbarkouski opened 1 year ago

yahorbarkouski commented 1 year ago

Introduces a new inline generic function to enhance the existing assertion capabilities for Iterable types: containsExactlyInAnyOrder(expected: Iterable<T>), reducing manual conversions.

If this approach makes sense, the next PR will contain similar improvements for the remaining iterable methods, thanks!