Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ tests to JUnit Jupiter.
* `@Rule` and `@ClassRule` no longer exist; superseded by `@ExtendWith` and
`@RegisterExtension`.
- See also <<migrating-from-junit4-rule-support>>.
* `@Test(expected = ...)` and the `ExpectedException` rule no longer exist; use
`Assertions.assertThrows(...)` instead.
See <<migrating-from-junit4-rule-support>> if you still do need to use
`ExpectedException`.
* Assertions and assumptions in JUnit Jupiter accept the failure message as their last
argument instead of the first one.
- See <<migrating-from-junit4-failure-message-arguments>> for details.
Expand Down