在JUnit测试中获取JAR列表

时间:2016-10-08 16:01:27

标签: java maven junit

是否可以在JUnit测试中获取JAR文件列表?

我想阅读MANIFEST.MF,但是当我尝试通过ClassLoaders(在正常执行中工作)获取JAR时,我只获得一个文件surefirebooter<somenumbers>.jar

这不是特定于测试的代码,而是我想在JUnit测试中测试的代码。

1 个答案:

答案 0 :(得分:1)

系统属性java.class.path包含所有类路径元素,JAR和目录。见enter image description here

使用maven-surefire-plugin执行代码时也可以。