Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从 ant build.xml 运行一个 junit 文件,其中 junit 位于 testscripts 包中,而 junit 类已由位于另一个名为 supportlibraries 的包中的其他类扩展,现在介绍如何通过 build.xml 运行我的 junit
可以帮我吗谢谢
除了 Mark O'Connor 的建议之外,您还需要在 junit 任务中设置依赖项。
<junit ....> <classpath> <pathelement path="testscripts" /> <pathelement path="supportlibraries"> <!-- Add other dependencies here. --> </classpath> <test name ="..."> </test> </junit>