Collections:
What Is JUnit (Java Unit) 5
What Is JUnit (Java Unit) 5?
✍: Guest
JUnit (Java Unit) 5 is a more complex system to write repeatable tests for Java applications.
It is composed of several different modules from three different sub-projects.
1. The JUnit Platform - Serves as a foundation for launching testing frameworks on the JVM. It also defines the TestEngine API for developing a testing framework that runs on the platform. Furthermore, the platform provides a Console Launcher to launch the platform from the command line and the JUnit Platform Suite Engine for running a custom test suite using one or more test engines on the platform. First-class support for the JUnit Platform also exists in popular IDEs (see IntelliJ IDEA, Eclipse, NetBeans, and Visual Studio Code) and build tools (see Gradle, Maven, and Ant).
2. JUnit Jupiter - Is the combination of the programming model and extension model for writing tests and extensions in JUnit 5. The Jupiter sub-project provides a TestEngine for running Jupiter based tests on the platform.
3. JUnit Vintage - Provides a TestEngine for running JUnit 3 and JUnit 4 based tests on the platform. It requires JUnit 4.12 or later to be present on the class path or module path.
The diagram below shows you the architecture the JUnit 5 system:
alt="JUnit 5 System Architecture"/>
For more information, see JUnit Website
⇐ Introduction of JUnit (Java Unit) 5
2025-04-03, 293🔥, 0💬
Popular Posts:
How to validate Mod 10 (Luhn Algorithm) checksum? In order to help your programming or testing tasks...
How to generate MAC addresses? To help you to obtain some MAC addresses for testing purpose, FYIcent...
How to validate domain name format? In order to help your programming or testing tasks, FYIcenter.co...
How to turn off HTTP response compression in SoapUI? HTTP response compression reduces the data size...
How to turn on Chrome WebDriver logging with Selenium Python API? If you want to turn on logging on ...