Starting with JUnit 5, we can easily group assertions, as in the following example:
@Test
void allAssertions() {
assertAll("cart",
()-assertEquals("Shirt",cart.getItemName()),
()-assertEquals("White",cart.getItemColor())
);
}
In a grouped assertion, all assertions are executed together and if one of it fails, the grouped assertion fails.