|
Clover 2.1 Documentation
|
DescriptionThe <clover-setup> task initialises Clover for use with your project. The basic nesting of elements within the <clover-setup> task is as follows: <clover-setup> Parameters
It is important to note that the Clover compiler adapter still picks up its settings from the set of Clover Ant properties. The <clover-setup> task provides a convenient method to set these properties. This means that builds that use the Clover 1.0 property set will continue to operate as expected.
Nested Elements of <clover-setup><files>An Ant patternset element which controls which files are included or excluded from Clover instrumentation.
<fileset>As of Clover 1.2, <clover-setup> also supports multiple Ant <filesets>. These give greater flexibility in specifying which source files are to be instrumented by Clover. This is useful when you have more than one source base and only want some of those source bases to be instrumented. This can be difficult to setup with patterns. Filesets also allow much greater flexibility in specifying which files to instrument by facilitating the use of Ant's fileset selectors. <methodContext>Specifies a method Context definition. See Using Coverage Contexts for more information. Parameters
<statementContext>Specifies a statement Context definition. See Using Coverage Contexts for more information. Parameters
<testsources><testsources> is an Ant fileset which should only be used if Clover's default test detection is not adequate. Clover's default test detection algorithm is used to distinguish test cases if this element is omitted.
Nested elements of <testsources><testclass><testclass> can be used to include only specific test classes. Parameters
<and><and> can be used to specify multiple instances of <testclass>, all of which must be matched for a class to be detected as a test, e.g.: <testsources dir="tests"> <and> <testclass annotation="Specification"/> <testclass annotation="Test"/> </and> <testsources> In this example, a class will only be recognised as a test if it has "Specification" and "Test" annotations. <or><or> can be used to specify multiple instances of <testclass>, any of which must be matched for a class to be detected as a test, e.g.: <testsources dir="tests"> <or> <testclass name=".*Spec"/> <testclass name=".*Test"/> </or> <testsources> In this example, a class will be recognised as a test if its name matches ".Spec", *or its name matches ".*Test".
Nested elements of <testclass><testmethod><testmethod> can be used to perform more fine grained detection of test methods. Parameters
Note that you can include multiple instances of <testmethod>, in which case they will be treated as 'or' clauses, e.g.: <testsources dir="tests"> <testclass> <testmethod annotation="Specification"/> <testmethod name="^should.*"/> <testmethod name="^must.*"/> </testclass> <testsources> In this example, a method will be recognised as a test if its annotation is "Specification", or its name matches "^should*", or its name matches "^must*".
Examples<clover-setup/> This example is the minimal setup to use Clover. In this case, the Clover coverage database is located in the .clover relative directory. <clover-setup enabled="${enable}" <files> <exclude name="**/optional/**/*.java"/> </files> </clover-setup> This example shows the use of a property, "enable", to control whether Clover instrumentation is enabled. Additionally, the instrumentation will exclude all Java source files in trees named "optional". Note that the fileset can also be referenced using a refid attribute. <clover-setup enabled="${coverage.enable}" <fileset dir="src/main"> <contains text="Joe Bloggs"/> </fileset> </clover-setup> This example instruments all source files in the src/main directory tree that contain the string "Joe Bloggs". Ant's filesets supports a number of these selectors. Please refer to the Ant manual for information on these selectors. Interval FlushingBy default Clover will write coverage data to disk when the hosting JVM exits, via a shutdown hook. This is not always practical, particularly when the application you are testing runs in an Application Server. In this situation, you can configure Clover to use "interval" flushing, where coverage data is written out periodically during execution: <clover-setup flushpolicy="interval" flushinterval="5000"/> The "flushinterval" defines in milliseconds the minimum interval between coverage data writes. Specifying a delegate compilerClover provides the optional "clovercompiler" attribute to allow specification of the java compiler to delegate to once instrumentation is completed. The attribute accepts the same values "compiler" attribute of the Ant Javac Task. <clover-setup clovercompiler="jikes"/>
This example will pass compilation to the "jikes" compiler once instrumentation is complete. Specifying the location of the Clover Coverage databaseBy default, Clover writes its internal database to the .clover directory relative to the project's basedir. To override this location, use the initstring attribute, e.g.: <clover-setup initstring="clover-db/coverage.db"
This example will use clover-db/coverage.db as the location for the Clover database. Note that the directory clover-db should exist before running this task. Specifying a custom test matcherBy default, Clover attempts to detect your test classes and methods. Clover's default behavior may be overridden via the following: <clover-setup/>
<testSources dir="src">
<include name="**/*Test.java"/>
<testclass name=".*Test">
<testmethod name=".*Bag.*"/> <!-- only the Bag related tests -->
</testclass>
</testSources>
</clover-setup>
This example tells Clover to recognise all of the following as tests: classes in the directory "src"; classes in files whose names end with "Test"; methods whose names contain with "Bag". |
