mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add java-junitparams.
* gnu/packages/java.scm (java-junitparams): New variable.
This commit is contained in:
parent
a0570377b8
commit
52a23d8e48
1 changed files with 31 additions and 0 deletions
|
@ -3735,6 +3735,37 @@ (define-public java-junit
|
|||
sharing common test data, and test runners for running tests.")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public java-junitparams
|
||||
(package
|
||||
(name "java-junitparams")
|
||||
(version "1.1.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Pragmatists/JUnitParams")
|
||||
(commit (string-append "JUnitParams-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0rb52xdfp99invyjrras3w0bf0a81cz30yd47rkkiyqcqj0y1q9b"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:jar-name "junitparams.jar"
|
||||
#:source-dir "src/main/java"
|
||||
#:test-dir "src/test"
|
||||
#:test-exclude (list "**/SuperclassTest.java")))
|
||||
(inputs
|
||||
`(("java-junit" ,java-junit)))
|
||||
(native-inputs
|
||||
`(("java-junit" ,java-junit)
|
||||
("java-hamcrest-core" ,java-hamcrest-core)
|
||||
("java-assertj" ,java-assertj)))
|
||||
(home-page "https://github.com/Pragmatists/JUnitParams")
|
||||
(synopsis "Parameterised test support for JUnit")
|
||||
(description "The JUnitParams project adds a new runner to JUnit and
|
||||
provides much easier and readable parametrised tests for JUnit.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public java-plexus-utils
|
||||
(package
|
||||
(name "java-plexus-utils")
|
||||
|
|
Loading…
Reference in a new issue