-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
Should be avoided, but may be useful.
expect.multiple(Seq(
expect(...).toEqual(...),
expect(...).toMatch(...)
))
NUnit's Assert.Multiple is not really equivalent since we need our tests to return an Expectation. So we need a compound Expectation here.
Perhaps a params array is nicer:
expect.multiple(
expect(...).toEqual(...),
expect(...).toMatch(...)
)
@eliasson thoughts?
Reactions are currently unavailable