| ||||||
instrument
|
+--compile
|
+--prepare
|
+--check
instruments the compiled classes for testing.
Modifies the bytecode of the generated binary class files to allow code coverage reporting.
<target depends="compile" description="instruments the compiled classes for testing." if="instrument" name="instrument" > <cobertura-instrument todir="${tmp.dir}"> <fileset dir="${bin.dir}"> <include name="**/*.class"/> <exclude name="**/*Test*.class"/> </fileset> </cobertura-instrument> </target> |
| ||||||
org.apache.xalan.processor.TransformerFactoryImpl