我正在尝试使用 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"/>
...
这有什么问题吗?
谢谢。