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>