The JUnit package contains a simple, open source framework to write and run repeatable tests. It is an instance of the xUnit architecture for unit testing frameworks. JUnit features include assertions for testing expected results, test fixtures for sharing common test data, and test runners for running tests.
This package is known to build and work properly using an LFS-7.9 platform.
Download (HTTP): https://launchpad.net/debian/+archive/primary/+files/junit4_4.11.orig.tar.gz
Download MD5 sum: b4d163832583dcec8bedb5427c795cc4
Download size: 1.7 MB
Estimated disk space required: 34 MB
Estimated build time: 0.1 SBU
Required file: http://hamcrest.googlecode.com/files/hamcrest-1.3.tgz
apache-ant-1.9.6 and UnZip-6.0
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/junit
The javadoc command coming with OpenJDK 8 has become much stricter than before regarding the conformance of the Javadoc comments in source code to HTML. The Junit documentation does not meet that standard, so the conformance checks have to be disabled. This can be done with the following command:
sed -i '\@/docs/@a<arg value="-Xdoclint:none"/>' build.xml
Now place the required hamcrest jar files where needed and build the package:
tar -xf ../hamcrest-1.3.tgz && cp -v hamcrest-1.3/hamcrest-core-1.3{,-sources}.jar lib/ && ant populate-dist
Test the package by issuing ant dist. One test fails for unknown reason.
Install the files in the final location as the root
user:
install -v -m755 -d /usr/share/{doc,java}/junit-4.11 && chown -R root:root . && cp -v -R junit*/javadoc/* /usr/share/doc/junit-4.11 && cp -v junit*/junit*.jar /usr/share/java/junit-4.11 && cp -v hamcrest-1.3/hamcrest-core*.jar /usr/share/java/junit-4.11
If you have followed the instructions in Configuring the JAVA
environment, there is nothing more to do: the CLASSPATH
variable would be automatically updated.
Last updated on 2016-02-28 12:51:39 -0800