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
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<document>
<head>
<name>Using</name>
<author>Matt Albrecht</author>
<doc-version>$Date: 2003/05/04 06:40:12 $</doc-version>
</head>
<body>
<section>Ant Tasks</section>
<P>
The following is a listing of all ant tasks contained in this package.
</P>
<!--
<anttask name="coveragecounter">
<description>
Counts class file line numbers and instructions, and writes them to a
CSV (comma-separated spreadsheet) file.
</description>
<ant-nested-element name="classpath">
<description>
The <ant-link href="using.html#path">Path</ant-link> to use for finding
the class files for the coverage information. Elements in the
path may be either zipped files (includes war, ear, and jar files),
or directories.
</description>
</ant-nested-element>
<ant-nested-element name="filtertype">
<description>
Filters the collection of discovered classes from the classpath,
to restrict the classes that are put into the CSV file.
</description>
<ant-nested-element name="includes">
<description>
Specifies a restricted regular expression of class names,
packages, or method names, to be included in the output.
If any <tt>includes</tt> are specified in the filter, then
only those classes which are in the includes will be used.
</description>
<ant-parameter>
<attribute>value</attribute>
<description>restricted regular expression</description>
<required>No</required>
</ant-parameter>
</ant-nested-element>
<ant-nested-element name="excludes">
<description>
Specifies a restricted regular expression of class names,
packages, or method names, to be excluded from the output.
If any <tt>excludes</tt> are specified in the filter, then
classes which match the expressions will be excluded from
the output.
</description>
<ant-param>
<attribute>value</attribute>
<description>restricted regular expression</description>
<required>No</required>
</ant-param>
</ant-nested-element>
</ant-nested-element>
<ant-parameter>
<attribute>classpathref</attribute>
<description>A reference to an externally defined classpath.
</description>
<required>No</required>
</ant-parameter>
<ant-parameter>
<attribute>file</attribute>
<description>The name of the file to send the CSV output to.
</description>
<required>Yes</required>
</ant-parameter>
<ant-example>
<source>
<taskdef name="coveragecounter"
classname="net.sourceforge.groboutils.testing.codecoverage.v1.ant.CounterTask" >
<classpath>
<pathelement location="${output.jar-name}" />
<pathelement location="${libs.bcel}" />
<pathelement location="${libs.ant}" />
<pathelement path="${java.class.path}" />
</classpath>
</taskdef>
</source>
<description>
Defines the coveragecounter task.
</description>
</ant-example>
<ant-example>
<source>
<coveragecounter file="${dirs.test-output}/coverage-counts.csv">
<filtertype>
<includes value="net.sourceforge.groboutils.*" />
<excludes value="*.tests.*" />
</filtertype>
<classpath>
<pathelement location="${output.jar-name}" />
</classpath>
</coveragecounter>
</source>
<description>
Captures the source line and instructions for every class inside the
specified jar file (as defined by the Ant property
<tt>output.jar-name</tt>), whose package name starts with
"net.sourceforge.groboutils", but is not in the sub-package "test".
The output is sent to the file
<tt>${dirs.test-output}/coverage-counts.csv</tt>.
</description>
</ant-example>
</anttask>
-->
</body>
</document>
|