Frank Bommeli's Posts

Migrating JUnit4 Rules to JUnit5

May 10, 2020

Writing tests is time consuming and can contain many repetitive tasks like setting up the specific configuration and cleaning the context after the test. To best follow the DRY (Don't Repeat Yourself) principle, I started implementing JUnit4 rules. In this blog post, I will show how I migrated a JUnit4 rule to JUnit5.

Read more