diff --git a/report-generator/src/main/java/com/teamscale/report/testwise/model/factory/TestInfoFactory.java b/report-generator/src/main/java/com/teamscale/report/testwise/model/factory/TestInfoFactory.java index 4cde45e9b..0895630a9 100644 --- a/report-generator/src/main/java/com/teamscale/report/testwise/model/factory/TestInfoFactory.java +++ b/report-generator/src/main/java/com/teamscale/report/testwise/model/factory/TestInfoFactory.java @@ -75,7 +75,9 @@ public List 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()); } }