File: v2_antdoc_coveragereport.xml

package info (click to toggle)
libgroboutils-java 5-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,396 kB
  • ctags: 11,186
  • sloc: java: 59,748; xml: 12,762; sh: 377; perl: 104; makefile: 20
file content (278 lines) | stat: -rw-r--r-- 11,274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<?xml version="1.0" encoding="ISO-8859-1"?>
<document>
<head>
    <name>CoverageReport: GroboCoverage Ant Tasks</name>
    <doc-version>$Date: 2004/04/06 02:57:09 $</doc-version>
    <author>Matt Albrecht</author>
</head>
<body>

<P>
<link name="v2_antdoc">All Tasks</link>
</P>

<anttask name="coveragereport">
    <description>
    <i>deprecated - use <link name="v2_antdoc_grobo-report">grobo-report</link>
    instead.</i>
    <p>
    Generates an XML report describing all the coverage tallies for the
    classes that were logged during runtime execution.  The report combines
    the runtime coverage logs with the post-compilation generated data.  One
    report is created per analysis module.  Currently, this task supports
    all included channel outputs (<code>DirectoryChannelLoggerFactory</code>,
    <code>CacheDirChannelLoggerFactory</code>, and
    <code>MinDirChannelLoggerFactory</code>).
    </p>
    </description>
    
    <ant-nested-element name="simplestyle">
        <description>
         Generates one HTML file for each analysis module<special-text>,
         which look something like
         <link name="CoverageReport-LineCount">this</link></special-text>.
        </description>
        <ant-nested-element name="param">
            <description>
            Used to pass a parameter to the underlying XSL stylesheet.
            The usage is exactly like the <code>param</code> structure
            for the <ant-link href="CoreTasks/style.html">style</ant-link>
            Ant task.
            </description>
            <ant-parameter>
                <attribute>name</attribute>
                <description>Name of the XSL parameter</description>
                <required>Yes</required>
            </ant-parameter>
            <ant-parameter>
                <attribute>expression</attribute>
                <description>Text value to be placed into the param.</description>
                <required>Yes</required>
            </ant-parameter>
            <ant-parameter>
                <attribute>if</attribute>
                <description>The param will only pass if this property is
                set.</description>
                <required>No</required>
            </ant-parameter>
            <ant-parameter>
                <attribute>if</attribute>
                <description>The param will only pass unless this property is
                set.</description>
                <required>No</required>
            </ant-parameter>
        </ant-nested-element>
        <ant-parameter>
            <attribute>prefix</attribute>
            <description>The text to prepend all output HTML file names.
            The output name will look like
            <code><i>prefix</i>ModuleName<i>suffix</i></code>.  Default
            prefix is <code>CoverageReport-</code>.
            </description>
            <required>No</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>suffix</attribute>
            <description>The text to append to all output HTML file names.
            The output name will look like
            <code><i>prefix</i>ModuleName<i>suffix</i></code>.  Default
            prefix is <code>CoverageReport-</code>.  Default suffix is
            <code>.html</code>.
            </description>
            <required>No</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>destdir</attribute>
            <description>The output directory to place the HTML files.
            Default directory is <code>.</code>.
            </description>
            <required>No</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>removeEmpty</attribute>
            <description>A boolean value.  This describes whether the
            output report should remove all methods and classes that don't
            have any code attributed to them (such as interfaces and
            abstract methods).  Default is <code>false</code>.
            </description>
            <required>No</required>
        </ant-parameter>
    </ant-nested-element>
    
    <ant-nested-element name="sourcestyle">
        <description>
         Generates a JavaDoc-like collection of HTML files for all the
         analysis modules, linking the coverage reports to the source files.
         This report shows the contents of the source files and highlights
         whichever lines were not covered.
        </description>
        <ant-parameter>
            <attribute>title</attribute>
            <description>The title text to be placed on the top of every
            HTML file.  Default is <code>Summary Coverage Report</code>.
            </description>
            <required>No</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>srcdir</attribute>
            <description>Directory containing the source files.
            </description>
            <required>Yes</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>destdir</attribute>
            <description>The output directory to place the HTML files.
            Default directory is <code>.</code>.
            </description>
            <required>No</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>footertext</attribute>
            <description>Text to be put at the bottom of every
            center frame's page (default is an advertisement for
            GroboUtils).</description>
            <required>No</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>footerhref</attribute>
            <description>Link to have the <code>footertext</code>
            point to (default is an advertisement for GroboUtils).</description>
            <required>No</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>stylesheet</attribute>
            <description>Stylesheet file to use in replacement of
            the default.</description>
            <required>No</required>
        </ant-parameter>
        <ant-parameter>
            <attribute>removeEmpty</attribute>
            <description>A boolean value.  This describes whether the
            output report should remove all methods and classes that don't
            have any code attributed to them (such as interfaces and
            abstract methods).  Default is <code>false</code>.
            </description>
            <required>No</required>
        </ant-parameter>
    
        <ant-nested-element name="srcdir">
            <description>
            In addition to the <code>srcdir</code> attribute, you can include
            multiple source directories for searching.  The first directory
            containing the source file will be used in the report.
            </description>
            <ant-parameter>
                <attribute>name</attribute>
                <description>The name of the directory containing a
                source tree.
                </description>
                <required>Yes</required>
            </ant-parameter>
        </ant-nested-element>
    </ant-nested-element>

    <ant-parameter>
        <attribute>datadir</attribute>
        <description>The name of the directory to read the analysis module
        generated data from.  This same directory should be specified in the
        <tt>coveragepostcompiler</tt> task's <tt>datadir</tt> attribute as
        well.
        </description>
        <required>Yes</required>
    </ant-parameter>
    <ant-parameter>
        <attribute>logDir</attribute>
        <description>The name of the directory to read the log output
        generated from running the code.  This same directory should be
        specified in the <tt>grobocoverage.properties</tt> file.
        </description>
        <required>Yes</required>
    </ant-parameter>
    <ant-parameter>
        <attribute>outdir</attribute>
        <description>The name of the directory that will contain the generated
        XML documents.
        </description>
        <required>Yes</required>
    </ant-parameter>
    <ant-parameter>
        <attribute>reportfileprefix</attribute>
        <description>Text that will prepend each outputted XML document's
        file name (default is <tt>Coverage-</tt>).
        </description>
        <required>No</required>
    </ant-parameter>
    <ant-parameter>
        <attribute>reportfileextension</attribute>
        <description>Text that will append each outputted XML document's
        file name (default is <tt>.xml</tt>).
        </description>
        <required>No</required>
    </ant-parameter>
    <ant-parameter>
        <attribute>failonerror</attribute>
        <description>Boolean describing if an error in this task should cause
        the build to fail (default is <tt>false</tt>).
        </description>
        <required>No</required>
    </ant-parameter>
    <ant-example>
        <source>
&lt;coveragereport
        datadir="${dirs.test-output}/coverage-data"
        logdir="${dirs.test-output}/coverage-log"
        outdir="${dirs.test-output}"&gt;
&lt;/coveragereport&gt;
        </source>
        <description>
        The &lt;coveragereport&gt; task generates one <tt>.xml</tt> file
        for each analysis module that has data in the
        <tt>${dirs.test-output}/coverage-data</tt> directory, using the
        runtime log data found in the <tt>${dirs.test-output}/coverage-log</tt>
        directory.  It also places in the same directory an <tt>.xml</tt> file
        that contains all the analysis module data.
        </description>
    </ant-example>
    <ant-example>
        <source>
&lt;coveragereport
        datadir="${dirs.test-output}/coverage-data"
        logdir="${dirs.test-output}/coverage-log"
        outdir="${dirs.test-output}"&gt;
    &lt;simplestyle destdir="${dirs.test-output}" removeempty="true" /&gt;
    &lt;sourcestyle destdir="${dirs.test-output}/source-report"
        removeempty="true" srcdir="src"
        title="Summary Coverage Report of My Code"&gt;
        
        &lt;srcdir name="${dirs.temp}/generated-source-1" /&gt;
        &lt;srcdir name="${dirs.temp}/generated-source-2" /&gt;
    &lt;/sourcestyle&gt;
&lt;/coveragereport&gt;
        </source>
        <description>
        Same as above, but this also generates two human-readable reports.
        The first (simplestyle) generates one HTML file in the
        <tt>${dirs.test-output}</tt> directory for each analysis module
        XML report.  <special-text>The generated file will
        look something like <link name="CoverageReport-LineCount">this</link>.
        </special-text>
        <p>
        The second (sourcestyle) generates a directory hierarchy of framed
        HTML pages in the <tt>${dirs.test-output}/source-report</tt>
        directory.  It links the original Java source files into the HTML
        by looking in the directories <code>src</code>,
        <code>${dirs.temp}/generated-source-1</code>, and
        <code>${dirs.temp}/generated-source-2</code> for the source files
        corresponding to the covered class files, in that order.
        </p>
        </description>
    </ant-example>
</anttask>

<P>
<link name="v2_antdoc">All Tasks</link>
</P>

</body>
</document>