Test Instance Post-processing
Understand how to test instances post-process using TestInstancePostProcessor in JUnit 5.
We'll cover the following...
Extension interface
After test instances are created by JUnit, we can post-process them using extensions. This is useful when we want to inject custom dependencies into test instances or invoke custom logic on test instances. The ...