我是ANT的新手,我正在尝试使用ant调用Junit测试(我在本文中使用的示例非常简单)。问题是我没有看到测试用例被调用,因为我在屏幕上看不到相关的输出。 (在下面的消息中,Junit之后没有日志,例如已经过了多少次测试)
Buildfile: C:\AntTestCases\build.xml
junit:
main:
BUILD SUCCESSFUL
Total time: 271 milliseconds
的build.xml
<?xml version="1.0" encoding="UTF-8"?>
<project name="testingAnt" basedir="." default="main">
<!-- classpaths -->
<path id="classpath">
<fileset dir="lib" includes="**/*.jar"/>
</path>
<target name="junit">
<junit printsummary="on" fork="true" haltonfailure="yes">
<classpath>
<path refid="classpath"/>
</classpath>
<batchtest todir="reportDir">
<fileset dir="tests" includes="*Test.java"/>
</batchtest>
<formatter type="xml"/>
<formatter type="plain" usefile="false" />
</junit>
</target>
<target name="main" depends="junit"/>
</project>
测试类
package suite;
import org.junit.Test;
import junit.framework.TestCase;
public class SampleTests extends TestCase{
@Test
public void test1() {
System.out.println("SampleTests.test1()");
assertTrue(true);
}
}
我将非常感谢您输入错误的地方。我已经阅读了很少有关于使用ant的junit的教程,但没有任何帮助 http://www.vogella.com/tutorials/ApacheAnt/article.html http://ant.apache.org/manual/tutorial-HelloWorldWithAnt.html
Junit的版本是4,ant - 1.8.1和java 1.7
答案 0 :(得分:1)
你需要像
这样的东西 <batchtest todir="reportDir">
<fileset dir="tests" includes="**/*Test.java"/>
</batchtest>