我已经为此抓了一段时间了。我一直在寻找Stack Overflow上的所有相关文章,以及在Google上可以找到的那些文章,但无济于事。

我正在尝试构建一个以Mancala.java作为主类的Java程序。目录结构如下:一个名为mancala的文件夹,其中包含一个名为test的子文件夹和一个名为mancala_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);
}


它可能与类路径(我尝试过想到的所有可能的变体)或静态内容有关。如果有人能让我摆脱痛苦,我将不胜感激。

/ edit构建后的目录结构:http://i.imgur.com/vvFJtNB.png

最佳答案

您需要一个目标来编译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>

07-26 09:31