[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26803: [PATCH 21/36] gnu: Add java-jmock-1.
From: |
Ricardo Wurmus |
Subject: |
bug#26803: [PATCH 21/36] gnu: Add java-jmock-1. |
Date: |
Sat, 6 May 2017 17:36:02 +0200 |
* gnu/packages/java.scm (java-jmock-1): New variable.
---
gnu/packages/java.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index af6b0761f..3271dd55c 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -1448,6 +1448,42 @@ constructor on object instantiation.")
mock objects in unit testing.")
(license license:asl2.0)))
+(define-public java-jmock-1
+ (package
+ (name "java-jmock")
+ (version "1.2.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/jmock-developers/"
+ "jmock-library/archive/" version ".tar.gz"))
+ (file-name (string-append "jmock-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0xmrlhq0fszldkbv281k9463mv496143vvmqwpxp62yzjvdkx9w0"))))
+ (build-system ant-build-system)
+ (arguments
+ `(#:build-target "jars"
+ #:test-target "run.tests"
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'install (install-jars "build")))))
+ (home-page "http://www.jmock.org")
+ (synopsis "Mock object library for Test Driven Development")
+ (description "JMock is a library that supports test-driven development of
+Java code with mock objects. Mock objects help you design and test the
+interactions between the objects in your programs.
+
+The jMock library
+
address@hidden
address@hidden makes it quick and easy to define mock objects
address@hidden lets you precisely specify the interactions between
+ your objects, reducing the brittleness of your tests
address@hidden plugs into your favourite test framework
address@hidden is easy to extend.
address@hidden itemize\n")
+ (license license:bsd-3)))
+
(define-public java-jopt-simple
(package
(name "java-jopt-simple")
--
2.12.2
bug#26803: [PATCH 26/36] gnu: Add java-commons-logging-minimal., Ricardo Wurmus, 2017/05/06
bug#26803: [PATCH 21/36] gnu: Add java-jmock-1.,
Ricardo Wurmus <=
bug#26803: [PATCH 20/36] gnu: Add java-commons-daemon., Ricardo Wurmus, 2017/05/06
bug#26803: [PATCH 28/36] gnu: Add java-httpcomponents-httpcore., Ricardo Wurmus, 2017/05/06
bug#26803: [PATCH 29/36] gnu: Add java-httpcomponents-httpcore-nio., Ricardo Wurmus, 2017/05/06
bug#26803: [PATCH 27/36] gnu: Add java-mockito-1., Ricardo Wurmus, 2017/05/06