How to Install and Uninstall JUnitParams.noarch Package on Fedora 39

Last updated: January 15,2025

1. Install "JUnitParams.noarch" package

Please follow the steps below to install JUnitParams.noarch on Fedora 39

$ sudo dnf update $ sudo dnf install JUnitParams.noarch

2. Uninstall "JUnitParams.noarch" package

Please follow the step by step instructions below to uninstall JUnitParams.noarch on Fedora 39:

$ sudo dnf remove JUnitParams.noarch $ sudo dnf autoremove

3. Information about the JUnitParams.noarch package on Fedora 39

Last metadata expiration check: 1:48:07 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : JUnitParams
Version : 1.1.1
Release : 1.fc39
Architecture : noarch
Size : 75 k
Source : JUnitParams-1.1.1-1.fc39.src.rpm
Repository : updates
Summary : Parameterized Java tests
URL : https://pragmatists.github.io/JUnitParams/
License : Apache-2.0
Description : The JUnitParams project adds a new runner to JUnit and provides much
: easier and more readable parameterized tests for JUnit >= 4.12.
:
: The main differences with the standard JUnit Parameterized runner are:
: - more explicit - params are in test method params, not class fields
: - less code - you don't need a constructor to set up parameters
: - you can mix parameterized with non-parameterized methods in one class
: - params can be passed as a CSV string or from a parameters provider
: class
: - parameters provider class can have as many parameters providing
: methods as you want, so that you can group different cases
: - you can have a test method that provides parameters (no external
: classes or statics anymore)
: - you can see actual parameter values in your IDE (in JUnit's
: Parameterized, it's only consecutive numbers of parameters)