我创建了一个 Ant 目标来编译我的代码。
<target name="test" depends="compile">
<junit>
<classpath>
<pathelement path="${basedir}\..\SwaCore\lib\junit.jar"/>
</classpath>
<classpath>
<pathelement path="${build}"/>
</classpath>
<test name="BinarySearchTest" />
</junit>
</target>
<target name="compile">
<mkdir dir="${build}"/>
<javac
srcdir="${basedir}\src;${basedir}\..\SwaCore\src;${basedir}\..\SwaShared\src;${basedir}\..\SwaDictionary\src;${basedir}\..\SwaSuggestion\src;${basedir}\..\SwaServerSharedCore\src;${basedir}\..\SwaPrediction\src;"
destdir="${build}"
debug="true"
debuglevel="lines,vars,source">
<classpath>
<pathelement path="${basedir}\..\SwaCore\lib\junit.jar"/>
<pathelement path="${basedir}\..\SwaSuggestion\lib\ssce.jar"/>
<pathelement path="C:\Java\javamail-1.4.1\mail.jar"/>
<pathelement path="C:\Java\commons-net-2.0\commons-net-ftp-2.0.jar"/>
<pathelement path="${basedir}\WebContent\WEB-INF\lib\gson-2.2.1.jar"/>
<pathelement path="${tomcatLibs}\servlet-api.jar"/>
</classpath>
</javac>
</target>
编译工作正常,我所有的类都在 ${build} 指向的文件夹中。我假设这个 ${build} 将是我的 JUnit 测试用例的类路径。然后我有一个测试目标,我想运行一个名为 BinarySearchTest 的 JUnit 测试。当我运行它时,我得到了一个简单的错误
Test BinarySearchTest FAILED
我知道我的单元测试没问题,因为它什么都不测试。
public class BinarySearchTest extends TestCase
{
public void test()
{
}
}
即使我将以下内容放入我的测试目标中,我仍然会遇到相同的错误
<test name="AtestThatDoesNotExistTest" />
结果 =
Test AtestThatDoesNotExistTest FAILED
我本来预计会出现 classNotFound 错误,因此我的 Ant XML 显然存在根本性错误
JUnit jar 正在被拾取,因为如果它不在类路径中,我会收到错误
The <classpath> for <junit> must include junit.jar if not in Ant's own classpath
更新我修改了我的目标以包括
<formatter type="brief" usefile="false" />
<test name="com.swaserver.junit.BinarySearchTest" />
test:
[junit] Testsuite: com.swaserver.junit.BinarySearchTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.878 sec
[junit] ------------- Standard Output ---------------
[junit] Initializing Binary search class
[junit] Binary search class initialized
[junit] ------------- ---------------- ---------------
构建成功总时间:2 秒
现在我可以看到我的测试实际上已经运行了。但是,除非我为单元测试指定完全限定的类名,否则我找不到一个类。为什么会这样?