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"/>