Skip to content

Commit

Permalink
CR#22849 Rework
Browse files Browse the repository at this point in the history
  • Loading branch information
DreierF committed May 7, 2020
1 parent 63643ce commit 80b1203
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ public List<TestInfo> createTestInfosWithoutCoverage() {
}
for (TestExecution testExecution : testExecutionsMap.values()) {
if (!processedTestUniformPaths.contains(testExecution.getUniformPath())) {
System.err.println("No coverage found found for " + testExecution.getUniformPath());
System.err.println("Test " + testExecution.getUniformPath() + " was executed but no coverage was found. " +
"Please make sure that you did provide all relevant exec files and that the test IDs passed to " +
"the agent match the ones from the provided test execution list.");
processedTestUniformPaths.add(testExecution.getUniformPath());
}
}
Expand Down

0 comments on commit 80b1203

Please sign in to comment.