<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project
	name="testability">
	<property
		name="testability.lib.dir"
		location="${ant.lib.dir}/testability" />

	<target
		name="testability"
		depends="jar"
		description="Compute a metric of how hard the source code is to test">
		<path
			id="testability.classpath">
			<fileset
				dir="${testability.lib.dir}">
				<include
					name="*.jar" />
			</fileset>
		</path>

		<taskdef
			name="testability"
			classname="com.google.ant.TestabilityTask"
			classpathref="testability.classpath"
			onerror="failall" />

		<testability>
			<classpath>
				<pathelement
					location="${unsigned.target.jar}" />
			</classpath>
		</testability>
	</target>
</project>


