在JUnit测试执行期间,我试图从类路径加载sample.properties,但它在类路径中找不到文件。如果我写一个Java Main类,我就可以很好地加载文件。我正在使用下面的ant任务来执行我的JUnit。
public class Testing {
@BeforeClass
public static void setUpBeforeClass() throws Exception {
Properties props = new Properties();
InputStream fileIn = props_.getClass().getResourceAsStream("/sample.properties");
**props.load(fileIn);**
}
}
JUnit:
<path id="compile.classpath">
<pathelement location="${build.classes.dir}"/>
</path>
<target name="test" depends="compile">
<junit haltonfailure="true">
<classpath refid="compile.classpath"/>
<formatter type="plain" usefile="false"/>
<test name="${test.suite}"/>
</junit>
</target>
<target name="compile">
<javac srcdir="${src.dir}"
includeantruntime="false"
destdir="${build.classes.dir}" debug="true" debuglevel="lines,vars,source">
<classpath refid="compile.classpath"/>
</javac>
<copy todir="${build.classes.dir}">
<fileset dir="${src.dir}/resources"
includes="**/*.sql,**/*.properties" />
</copy>
</target>
输出:
[junit] Tests run: 0, Failures: 0, Errors: 1, Time elapsed: 0.104 sec
[junit]
[junit] Testcase: com.example.tests.Testing took 0 sec
[junit] Caused an ERROR
[junit] null
[junit] java.lang.NullPointerException
[junit] at java.util.Properties$LineReader.readLine(Properties.java:418)
[junit] at java.util.Properties.load0(Properties.java:337)
[junit] at java.util.Properties.load(Properties.java:325)
[junit] at com.example.tests.Testing.setUpBeforeClass(Testing.java:48)
[junit]
您需要将${build.classes.dir}
添加到compile.classpath
。
更新:根据评论中的沟通,事实证明classpath
不是问题所在。相反,使用了错误的类加载器。
Class.getResourceAsStream()
根据加载类的类加载器查找资源的路径。事实证明,Properties
类是由与Testing
类不同的类加载器加载的,并且资源路径相对于该类加载器的classpath
是不正确的。解决方案是使用Testing.class.getResourceAsStream(...)
而不是Properties.class.getResourceAsStream(...)
。
这是有效的:
YourTestClass.class.getClassLoader().getResourceAsStream
此不起作用:
YourTestClass.class.getResourceAsStream