Testinium (v 1.1)
New and noteworthy

> packages moved to org.testinium
> @Configuration now supports reporters() to add your own listeners and nodesGraphProcessor() to provide your own nodes sorting algorithm
> A basic org.testinium.ant.TestiniumTask ANT Task
ANT Task

As I said .. a very basic ANT task. Place the Testinium distrib in the $ANT_HOME/lib.


<project name="Testinium Build ANT Test" default="testinium-test" basedir=".."> <typedef name="testinium" classname="org.testinium.ant.TestiniumTask"/> <target name="testinium-test" description="--> testing the Testinium target"> <testinium> <path> <pathelement path="/Users/thierryjanaudy/Projects/TESTINIUM/samples/bin"/> </path> <clazz name="org.testinium.samples.BasicTest"/> <clazz name="org.testinium.samples.SimpleTest"/> </testinium> </target> </project>