我有一个maven项目,我想得到所有测试类及其文件路径的列表,而不必执行所有测试。
运行“mvn test”后,我在目标/下的唯一文件是
checkstyle-cachefile checkstyle-checker.xml checkstyle-result.xml maven-shared-archive-resources
我想要一些非常通用的东西,这不需要我编辑pom.xml文件。
答案 0 :(得分:0)
就我而言,测试类名称存储在
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
您可以运行 mvn test-compile
来创建它,而无需运行测试。