使用SonarQube sonar.testExecutionReportPaths导入测试执行
正在使用doc中的示例: https://docs.sonarqube.org/display/SONAR/Generic+Test+Data
使用doc:
中的示例xml<testExecutions version="1">
<file path="testx/ClassOneTest.xoo">
<testCase name="test1" duration="5"/>
<testCase name="test2" duration="500">
<skipped message="short message">other</skipped>
</testCase>
<testCase name="test3" duration="100">
<failure message="short">stacktrace</failure>
</testCase>
<testCase name="test4" duration="500">
<error message="short">stacktrace</error>
</testCase>
</file>
</testExecutions>
只更改路径值。
但是得到这个错误:
&#39;通用覆盖率报告&#39;跳过,因为缺少一个必需的属性。
出现此错误的原因是什么?
顺便说一句。如果我导入了tes执行,我可以在SonarQube中看到它。
运行SonarQube 6.5和扫描仪3.0.3.778。
由于