ant で Junit テストを使用しようとしています。
Eclipse を使用せずに Junit テストを作成する方法がよくわからないので、オンラインで見つけた非常に些細なことから始めます。これは常にパスする必要があります。
Test1.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
それで...それは私に何も教えてくれません...何が間違っていたのですか? それを修正する方法は?なし。何が起きているか知っている人はいますか?