我的测试包看起来像
test/
java/
com/
algos/
graphs/
GraphTest.java
resources/
graphs/
tinyG.txt
GraphTest
尝试读取tinyG
如下@Test
public void testTinyG() throws IOException {
final Graph g = new Graph(getBufferedReaderFor("tinyG.txt"));
System.out.println(g.toString());
}
private static BufferedReader getBufferedReaderFor(final String filename) {
return new BufferedReader(new InputStreamReader(GraphTest.class.getResourceAsStream("/graphs/" + filename)));
}
它以
NullPointerException
失败GraphTest.class.getResourceAsStream("/graphs/" + filename)
返回
null
。我在这里做错了什么?
tinyG
具有类似的数据13
13
0 5
4 3
0 1
9 12
6 4
5 4
0 2
谢谢
最佳答案
Eclipse为项目运行JUnit测试时,通常会使用项目的工作目录启动测试。因此,要从类路径访问tinyG.txt,必须使用路径/test/resources/graphs/tinyG.txt
。 tinyG.txt
工作的唯一方法是使其与.class文件位于同一目录中。