我有一个TestNG测试,它本身运行得非常好。在它的某个地方我得到了:
URL fileName = this.getClass().getClassLoader().getResource("config.properties");
我正在尝试使用Ant:运行相同的测试
<testng outputDir="${resultsFolder}" haltOnFailure="false">
<classpath>
<fileset dir="./src/">
<include name="**/*.properties"/>
</fileset>
-----------------------------...--------------------
</classpath>
<classfileset dir="correct path here" includes="**/*.class" />
</testng>
在调试模式下,我可以看到config.properties在类路径中。但是顶部的行找不到它,它是空的。
编辑:我解决了这个问题。关键行实际上不是直接在类路径中搜索文件,而是在文件/文件夹中搜索。所以,这解决了我的问题:
<pathelement location="src/"/>
谢谢你的帮助。
尝试用以下内容替换<classpath>...</classpath>
:
<classpath>
<pathelement path="./src"/>
</classpath>
为了让JVM找到config.properties
,config.properties
的父目录应该在类路径中。