source: general/prog/junit.xml@ f3429309

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since f3429309 was f3429309, checked in by Fernando de Oliveira <fernando@…>, 8 years ago
  • mupdf-1.8: minor reformat.
  • removing spaces from EOL, from Denis Mugnier.
  • BLFS/trunk/BOOK/kde/add/kdepim-runtime.xml: needed to fix to validate the book. One chunck had been removed. Bruce, please check if it is OK, now.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16645 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY junit-download-http "https://launchpad.net/debian/+archive/primary/+files/junit4_&junit-version;.orig.tar.gz">
8 <!ENTITY junit-download-ftp " ">
9 <!ENTITY junit-md5sum "b4d163832583dcec8bedb5427c795cc4">
10 <!ENTITY junit-size "1.7 MB">
11 <!ENTITY junit-buildsize "34 MB">
12 <!ENTITY junit-time "0.1 SBU">
13]>
14
15<sect1 id="junit" xreflabel="JUnit-&junit-version;">
16 <?dbhtml filename="junit.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>JUnit-&junit-version;</title>
24
25 <indexterm zone="junit">
26 <primary sortas="a-JUnit">JUnit</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to JUnit</title>
31
32 <para>
33 The <application>JUnit</application> package contains a simple, open
34 source framework to write and run repeatable tests. It is an instance of
35 the xUnit architecture for unit testing frameworks. JUnit features include
36 assertions for testing expected results, test fixtures for sharing common
37 test data, and test runners for running tests.
38 </para>
39
40 &lfs78_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>Download (HTTP): <ulink url="&junit-download-http;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download (FTP): <ulink url="&junit-download-ftp;"/></para>
49 </listitem>
50 <listitem>
51 <para>Download MD5 sum: &junit-md5sum;</para>
52 </listitem>
53 <listitem>
54 <para>Download size: &junit-size;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated disk space required: &junit-buildsize;</para>
58 </listitem>
59 <listitem>
60 <para>Estimated build time: &junit-time;</para>
61 </listitem>
62 </itemizedlist>
63
64 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
65 <itemizedlist spacing="compact">
66 <listitem>
67 <para>
68 Required file: <ulink
69 url="http://hamcrest.googlecode.com/files/hamcrest-&hamcrest-version;.tgz">
70 http://hamcrest.googlecode.com/files/hamcrest-&hamcrest-version;.tgz </ulink>
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">JUnit Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="apache-ant"/> and
80 <xref linkend="unzip"/>
81 </para>
82
83 <para condition="html" role="usernotes">User Notes:
84 <ulink url="&blfs-wiki;/junit"/></para>
85
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of JUnit</title>
90
91 <para>
92 The <command>javadoc</command> command coming with OpenJDK 8 has become
93 much stricter than before regarding the conformance of the Javadoc
94 comments in source code to HTML. The <application>Junit</application>
95 documentation does not meet that standard, so the conformance checks
96 have to be disabled. This can be done with the following command:
97 </para>
98
99<screen><userinput>sed -i '\@/docs/@a&lt;arg value="-Xdoclint:none"/&gt;' build.xml</userinput></screen>
100
101 <para>
102 Now place the required hamcrest jar files where needed and build the
103 package:
104 </para>
105
106<screen><userinput>tar -xf ../hamcrest-&hamcrest-version;.tgz &amp;&amp;
107cp -v hamcrest-&hamcrest-version;/hamcrest-core-&hamcrest-version;{,-sources}.jar lib/ &amp;&amp;
108ant populate-dist</userinput></screen>
109
110 <para>
111 Test the package by issuing <command>ant dist</command>. One test fails
112 for unknown reason.
113 </para>
114
115 <para>
116 Install the files in the final location as the
117 <systemitem class="username">root</systemitem> user:
118 </para>
119
120<screen role="root"><userinput>install -v -m755 -d /usr/share/{doc,java}/junit-&junit-version; &amp;&amp;
121chown -R root:root . &amp;&amp;
122
123cp -v -R junit*/javadoc/* /usr/share/doc/junit-&junit-version; &amp;&amp;
124cp -v junit*/junit*.jar /usr/share/java/junit-&junit-version; &amp;&amp;
125cp -v hamcrest-&hamcrest-version;/hamcrest-core*.jar /usr/share/java/junit-&junit-version;</userinput></screen>
126
127 <para>
128 If you have followed the instructions in <xref linkend="ojdk-conf"/>,
129 there is nothing more to do: the <envar>CLASSPATH</envar> variable
130 whould be automatically updated.
131 </para>
132
133 </sect2>
134
135 <sect2 role="content">
136 <title>Contents</title>
137
138 <segmentedlist>
139 <segtitle>Installed Programs</segtitle>
140 <segtitle>Installed Libraries</segtitle>
141 <segtitle>Installed Directories</segtitle>
142
143 <seglistitem>
144 <seg>None</seg>
145 <seg>hamcrest-core and junit jar files</seg>
146 <seg>/usr/share/doc/junit-&junit-version; and
147 /usr/share/java/junit-&junit-version;</seg>
148 </seglistitem>
149 </segmentedlist>
150
151 <variablelist>
152 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
153 <?dbfo list-presentation="list"?>
154 <?dbhtml list-presentation="table"?>
155
156 <varlistentry id="junit.jar">
157 <term><filename class='libraryfile'>junit jar files</filename></term>
158 <listitem>
159 <para>contains java classes to support the xUnit framework testing
160 architecture.</para>
161 <indexterm zone="junit junit.jar">
162 <primary sortas="c-junit.jar">junit-&junit-version;.jar</primary>
163 </indexterm>
164 </listitem>
165 </varlistentry>
166
167 </variablelist>
168
169 </sect2>
170
171</sect1>
Note: See TracBrowser for help on using the repository browser.