Eva

Results 306 comments of Eva

Shouldn't be, the method reference for that case would be `val context`.

Had considered implementing this but not sure it pulls it's weight as a feature, since it would only be for components, you still need the lambda form for anywhere else...

`containsExactlyInAnyOrder` takes a vararg so the correct way would be: ```kotlin assertThat(firstList).containsExactlyInAnyOrder(1, 2) ``` See https://github.com/willowtreeapps/assertk/issues/428#issuecomment-1297721662

This is down to kotlin using reference equality for arrays. https://blog.jetbrains.com/kotlin/2015/09/feedback-request-limitations-on-data-classes/#appendix.-comparing-arrays We have a special-case for asserting array equality but it's not possible to extend that for all places that...

I'm not sure I'm following your question, how would you expect to pass the controller arg?

Agreed that this could use some work. I'm going to try to explain what's there now as a starting point, which is sadly under-documented. Note: the examples below will be...