Exception Handling
Understand how to handle exceptions in JUnit 5.
We'll cover the following...
Swallow IOException
We can use custom extensions to handle exceptions thrown during test executions. The extension interface for exception handling is TestExecutionExceptionHandler
. It ...