devxlogo

March 24, 2017

Grouping Assertions in JUnit 5

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