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?