Please enable JavaScript.
Coggle requires JavaScript to display documents.
JUNIT5 (Annotations (RENAMED (AfterEach = After, Disabled = Ignore,…
JUNIT5
-
Annotations
-
OTHER
-
-
-
ExtendWith (ClassRule, Rule, RuleWith)
-
-
Test didn't change but it is in jupiter package (org.junit.jupiter.api.Test (instead of org.junit.Test)
-
-
-
NEW TEST TYPES
-
Parameterized tests
-
-
-
-
-
-
for the display name we can use such placeholders as {index}, {arguments} , {0}, {1}
-
-
-
Assertions
message might be returned by lambda, so string will be generated only when test is failed. Save some time performance
-
assertAll - logical AND. all test will be executed nevertheless the first one might be failed (several assertion one after another
-
-
-