How To Install junit5 on Fedora 36
Introduction
In this tutorial we learn how to install junit5 on Fedora 36.
What is junit5
JUnit is a popular regression testing framework for Java platform.
We can use yum or dnf to install junit5 on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install junit5.
Install junit5 on Fedora 36 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install junit5 using dnf by running the following command:
sudo dnf -y install junit5
Install junit5 on Fedora 36 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install junit5 using yum by running the following command:
sudo yum -y install junit5
How To Uninstall junit5 on Fedora 36
To uninstall only the junit5 package we can use the following command:
sudo dnf remove junit5
junit5 Package Contents on Fedora 36
/usr/share/java/junit5
/usr/share/java/junit5/junit-jupiter-api.jar
/usr/share/java/junit5/junit-jupiter-engine.jar
/usr/share/java/junit5/junit-jupiter-migrationsupport.jar
/usr/share/java/junit5/junit-jupiter-params.jar
/usr/share/java/junit5/junit-jupiter.jar
/usr/share/java/junit5/junit-platform-commons.jar
/usr/share/java/junit5/junit-platform-engine.jar
/usr/share/java/junit5/junit-platform-launcher.jar
/usr/share/java/junit5/junit-platform-reporting.jar
/usr/share/java/junit5/junit-platform-runner.jar
/usr/share/java/junit5/junit-platform-suite-api.jar
/usr/share/java/junit5/junit-platform-testkit.jar
/usr/share/java/junit5/junit-vintage-engine.jar
/usr/share/licenses/junit5
/usr/share/licenses/junit5/LICENSE-notice.md
/usr/share/licenses/junit5/LICENSE.md
/usr/share/maven-metadata/junit5.xml
/usr/share/maven-poms/junit5
/usr/share/maven-poms/junit5/junit-bom.pom
/usr/share/maven-poms/junit5/junit-jupiter-api.pom
/usr/share/maven-poms/junit5/junit-jupiter-engine.pom
/usr/share/maven-poms/junit5/junit-jupiter-migrationsupport.pom
/usr/share/maven-poms/junit5/junit-jupiter-params.pom
/usr/share/maven-poms/junit5/junit-jupiter.pom
/usr/share/maven-poms/junit5/junit-platform-commons.pom
/usr/share/maven-poms/junit5/junit-platform-engine.pom
/usr/share/maven-poms/junit5/junit-platform-launcher.pom
/usr/share/maven-poms/junit5/junit-platform-reporting.pom
/usr/share/maven-poms/junit5/junit-platform-runner.pom
/usr/share/maven-poms/junit5/junit-platform-suite-api.pom
/usr/share/maven-poms/junit5/junit-platform-testkit.pom
/usr/share/maven-poms/junit5/junit-vintage-engine.pom
References
Summary
In this tutorial we learn how to install junit5 on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).