我正在尝试将 Junit 测试与 ant 一起使用。
由于我真的不知道如何在没有 Eclipse 的情况下编写 Junit 测试,所以我将从在网上找到的一些完全微不足道的东西开始。这应该总是通过。
测试1.java
import junit.framework.*;
public class Test1 extends TestCase {
@Test
public void testOne()
{
System.out.println("Heyy there I'm a test!");
assertTrue( "TestExample", true );
}
}
我将这些添加到我的 build.xml 中...
49 <target name="junit" depends="jar">
50 <junit printsummary="withOutAndErr" fork="yes" showoutput="yes">
51 <classpath refid="application"/>
52 <test name="test.Test1"/>
53 </junit>
54 </target>
所以现在当我运行“ant junit”时,我得到了
junit:
[junit] Running test.Test1
[junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
所以......这并没有告诉我任何事情......出了什么问题?如何解决?没有。有谁知道怎么回事?