antを使用してjunit Javaファイルをコンパイルしようとしていますが、
package org.junit does not exist
[javac] import static org.junit.Assert.*;
...
そして、これは build.xml の私の部分です。
<javac debug="true" includeantruntime="false" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}">
<src path="test"/>
<classpath refid="MyProgram.classpath"/>
</javac>
<path id="MyProgram.classpath">
...
<pathelement location="lib/junit.jar"/>
...
これに問題はありますか?
ありがとう。