JUnit+Ant

Estou tentando rodar testes unitários via Ant, mas estou tendo o seguinte problema:

Buildfile: C:\Workspaces\rad\SwitchBanco24HorasTransferTest\build.xml
test:
[junit] Test TestExample FAILED
[junit] Test TransactionTransferTest FAILED
all:
BUILD SUCCESSFUL
Total time: 957 milliseconds

Abaixo, meu arquivo build.xml:

<property file="SwitchBanco24HorasTransferTest/build.properties"/>

<target name="test">
	<junit>
	 	<batchtest>
	    	<fileset dir="C:\Workspaces\rad\SwitchBanco24HorasTransferTest\test\br\com\tecban\switchtb\tx\banco24horas\transfer">
	 			<include name="**/*Test*.java"/>
	 		</fileset>
	 	</batchtest>
	</junit>
</target>  
  
<target name="all" depends="test"/>

Será que alguém poderia me ajudar…nunca trabalhei com Ant antes…

Alguém pode ajudar? Desculpe a insistência aí…mas to precisando dessa ajuda!

cara,
o build ta dando OK, significa que não esta dando erro…
os testes que parecem estar falhando, isso pode acontecer por varios motivos.
vc consegue executar esses testes sem direto na IDE sem usar JUNIT?

[]´s

Eu consigo executar os testes unitários sim, mas quando tento rodar a partir do ant ocorre o erro já descrito.