How To Install junit5 on Fedora 34

junit5 is Java regression testing framework

Introduction

In this tutorial we learn how to install junit5 on Fedora 34.

What is junit5

JUnit is a popular regression testing framework for Java platform.

We can use yum or dnf to install junit5 on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install junit5.

Install junit5 on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install junit5 using dnf by running the following command:

sudo dnf -y install junit5

Install junit5 on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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 34

To uninstall only the junit5 package we can use the following command:

sudo dnf remove junit5

junit5 Package Contents on Fedora 34

/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 34 using yum and dnf.