You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expected subject: [Person(..), Person(...)]
◆ elements need all:
» age
» to be greater than or equal: 18
» zip
» not to equal: null
» city
» not to equal: null
❗❗ following elements were mismatched:
⚬ index 0: Person(...)
⚬ index 1: Person(...)
Depending on the representation of Person it is possible to see why it mismatches but it is cumbersome as one has to manually scan the output and see why it failed. I would like to see all failing assertions per mismatch:
I expected subject: [Person(..), Person(...)]
◆ elements need all:
» age
» to be greater than or equal: 18
» zip
» not to equal: null
» city
» not to equal: null
❗❗ following elements were mismatched:
⚬ index 0: Person(...)
> age: 10
* to be greater than or equal: 18
⚬ index 1: Person(...)
> city: null
* not to equal: null
This closely relates to #724 and I think we should also provide a report option which allows to define if we show also successful assertions or not
The text was updated successfully, but these errors were encountered:
Platform (all, jvm, js): all
Extension (none, kotlin 1.3): none
Code related feature
in reporting we see currently
Depending on the representation of Person it is possible to see why it mismatches but it is cumbersome as one has to manually scan the output and see why it failed. I would like to see all failing assertions per mismatch:
This closely relates to #724 and I think we should also provide a report option which allows to define if we show also successful assertions or not
The text was updated successfully, but these errors were encountered: