Skip to main content

Practice: Migrate to JUnit 5

Ready to practice migrating from JUnit 4 to JUnit 5? We've prepared a test class with common JUnit 4 patterns that you can improve.

Exercise: OrderValidatorTest

The OrderValidatorTest class in the orders module demonstrates several JUnit 4 patterns that need migration:

What you'll find

  • JUnit 4 annotations: @Before, @Test from org.junit.
  • Try-catch-fail pattern: Awkward exception testing with try-catch blocks.
  • Verbose assertions: Manual loops and checks.
  • Old assertion style: JUnit 4's assertTrue, assertEquals, assertFalse.

Your task

Migrate this test to JUnit 5 and improve the test patterns.

Hints:

  • Look at the Migrate to JUnit 5 page for guidance on package and annotation changes.
  • JUnit 5 uses different package names (org.junit.jupiter.api.* instead of org.junit.*).
  • Lifecycle annotations have new names that better express their purpose.
  • Exception testing can be done more elegantly without try-catch blocks.
  • JUnit 5 relaxes visibility requirements for test classes and methods.

Running the test

You can run the test in your IDE or use the following commands:

# Run the test
mvn test -pl orders -Dtest=OrderValidatorTest

# Or run all tests in the orders module
mvn test -pl orders

Automated migration

By completing this exercise, you'll gain hands-on experience with:

  • Converting JUnit 4 lifecycle annotations to JUnit 5.
  • Modernizing exception testing patterns.
  • Improving test readability and maintainability.
  • Understanding the benefits of JUnit 5 over JUnit 4.

Running the migration recipes

You can also use OpenRewrite to automatically migrate the test:

The Moderne CLI allows you to run OpenRewrite recipes on your project without needing to modify your build files, against serialized Lossless Semantic Tree (LST) of your project for a considerable performance boost & across projects.

You will need to have configured the Moderne CLI on your machine before you can run the following command.

  1. If project serialized Lossless Semantic Tree is not yet available locally, then build the LST. This is only needed the first time, or after extensive changes:
shell
mod build ~/workspace/
  1. If the recipe is not available locally yet, then you can install it once using:
shell
mod config recipes jar install org.openrewrite.recipe:rewrite-testing-frameworks:LATEST
  1. Run the recipe.
shell
mod run ~/workspace/ --recipe org.openrewrite.java.testing.junit5.JUnit4to5Migration

See the Migrate to JUnit 5 page for more migration options.