JUnit 5 is composed of three separate modules

  1. JUnit Platform is the foundation for launching testing frameworks in the JVM; it is supported by many IDEs and build tools.
  2. JUnit Jupiter is the newest programming model as well as the TestEngine for JUnit 5 tests.
  3. There's JUnit Vintage - the TestEngine for older JUnit 3 and JUnit 4 tests.

Comments