[inspections] log all mentioned problems to debug flaky tests

logging for KTIJ-28170

GitOrigin-RevId: 7840ec976828787bcfd6d96d74988302666f2a52
This commit is contained in:
Anna Kozlova
2023-12-16 10:36:47 +01:00
committed by intellij-monorepo-bot
parent 5473d915f7
commit af0bb596d5

View File

@@ -66,7 +66,10 @@ public final class InspectionTestUtil {
}
if (!problems.isEmpty()) {
Assert.fail(String.join("\n", problems));
Assert.fail(String.join("\n", problems) +
"\n where all reported are: " + JDOMUtil.writeElement(doc) +
"\n all expected are: " + JDOMUtil.writeElement(expectedDoc)
);
}
}