me
/
guix
Archived
1
0
Fork 0

gnu: java-junit: Enable tests.

* gnu/packages/java.scm (java-junit)[arguments]: Enable tests.
master
Julien Lepiller 2020-04-05 21:30:26 +02:00
parent 031516d69a
commit 29428e10b8
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 14 additions and 3 deletions

View File

@ -3733,10 +3733,21 @@ testing frameworks, mocking libraries and UI validation rules.")
#t))))
(build-system ant-build-system)
(arguments
`(#:tests? #f ; no tests
#:jar-name "junit.jar"))
(inputs
`(#:jar-name "junit.jar"
#:source-dir "src/main/java"
#:test-dir "src/test"
#:test-exclude (list "**/SimpleTest.java" "**/StackTracesTest.java"
"**/RuleChainTest.java" "**/TestWatchmanTest.java")
#:phases
(modify-phases %standard-phases
(add-before 'check 'copy-test-resources
(lambda _
(copy-recursively "src/test/resources" "build/test-classes")
#t)))))
(propagated-inputs
`(("java-hamcrest-core" ,java-hamcrest-core)))
(native-inputs
`(("java-hamcrest-library" ,java-hamcrest-library)))
(home-page "https://junit.org/junit4/")
(synopsis "Test framework for Java")
(description