JUnit 4 Migration
Understand the usage of JUnit 4 and Junit 5 runtimes.
We'll cover the following...
Overview
As previously mentioned, JUnit Jupiter and JUnit Vintage both run on the same platform. JUnit Vintage can run JUnit 4 and JUnit 3 tests. JUnit Jupiter uses a different package name, so it doesn’t conflict with the existing JUnit 4. Tests written with the new JUnit Jupiter programming model and legacy JUnit 4 tests can coexist in the same project. If we have legacy projects with JUnit 4 tests and want to leverage the new programming model in ...