我已经在这一段时间里摸不着头脑了。我一直在查看Stack Overflow上的所有相关帖子以及我可以在谷歌找到的那些帖子,但它无济于事。
我正在尝试构建一个将Mancala.java作为主类的Java程序。目录结构如下:一个名为mancala的文件夹,其中一个名为test的子文件夹和一个名为mancala_test的子文件夹。 test文件夹包含Mancala.java文件和其他文件,mancala_test文件夹包含名为MancalaTest.java的JUnit测试文件。在Eclipse中,测试文件运行,但是当通过Ant运行时,我收到以下错误:
init:
compile:
[javac] Compiling 6 source files to C:\Users\[me]\Desktop\build
runjunit:
[junit] Running mancala_test.MancalaTest
[junit] Testsuite: mancala_test.MancalaTest
[junit] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0 sec
[junit] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0 sec
[junit]
[junit] Caused an ERROR
[junit] mancala_test.MancalaTest
[junit] java.lang.ClassNotFoundException: mancala_test.MancalaTest
[junit] at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
[junit] at java.lang.Class.forName0(Native Method)
[junit] at java.lang.Class.forName(Class.java:266)
[junit]
[junit] Test mancala_test.MancalaTest FAILED
BUILD SUCCESSFUL
Total time: 1 second
我在mancala文件夹中使用以下构建文件:
<project default="runjunit" name="Compile and run JUnit tests">
<target name="clean">
<delete dir="build"/>
</target>
<target name="clean2">
<delete dir="build"/>
</target>
<target name="init">
<record name="build.log" loglevel="verbose" append="false"/>
</target>
<target name="runjunit" depends="compile">
<junit printsummary="on">
<test name="mancala_test.MancalaTest"/>
<classpath>
<pathelement location="build"/>
</classpath>
<formatter
type="plain"
usefile="false"
/>
</junit>
</target>
<target name="compile" depends="init">
<mkdir dir="build"/>
<javac includeantruntime="false" srcdir="./test" destdir="build"/>
</target>
</project>
其他可能的相关信息是Mancala.java文件包含两个静态初始化器,即GUI和Mancala类本身(例如,静态Mancala mancala;静态GUI gui; Mancala_test.java只使用Mancala mancala = new Mancala每个测试中的()对象。
一个测试的例子:
@Test
public void testAmountOfSeed() {
Mancala mancala = new Mancala();
mancala.divideBoard();
int totalAmountOfSeed = 0;
for (int i = 0; i < mancala.gameBoard.size(); i++) {
totalAmountOfSeed +=mancala.gameBoard.get(i).getSeed();
}
assertTrue("Total amount of seed in initial condition not 48!", totalAmountOfSeed == 48);
}
它可能与类路径有关(我尝试了所有可能的变化)或静态的东西。如果有人能让我摆脱痛苦,我将非常感激。
/编辑构建后的目录结构:http://i.imgur.com/vvFJtNB.png
答案 0 :(得分:2)
您需要一个目标来编译test_mancala
目录,并将该编译的目标添加到runjunit
目标的类路径中。
<target name="compile-test_mancala" depends="init, compile">
<mkdir dir="build-test_mancala"/>
<javac includeantruntime="false" srcdir="./test_mancala" destdir="build_mancala">
<classpath>
<pathelement location="build"/>
<pathelement location="${junit_lib}"/>
</classpath>
</javac>
</target>
<target name="runjunit" depends="compile, compile-test_mancala">
<junit printsummary="on">
<test name="mancala_test.MancalaTest"/>
<classpath>
<pathelement location="build"/>
<pathelement location="build-test_mancala"/>
</classpath>
<formatter
type="plain"
usefile="false"
/>
</junit>
</target>