File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/test/java/org/sonar/plugins/checkstyle Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1616
1717 <properties >
1818 <maven .checkstyle.plugin.version>2.17</maven .checkstyle.plugin.version>
19- <maven .sevntu.checkstyle.plugin.version>1.27 .0</maven .sevntu.checkstyle.plugin.version>
19+ <maven .sevntu.checkstyle.plugin.version>1.28 .0</maven .sevntu.checkstyle.plugin.version>
2020 </properties >
2121
2222 <dependencies >
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ public void generateXmlReportInEnglish() throws Exception {
131131 createJavaResourceLocator ());
132132 executor .execute ();
133133
134- Assert .assertTrue (report .exists ());
134+ Assert .assertTrue ("Report should exists" , report .exists ());
135135
136136 final String reportContents = FileUtils .readFileToString (report );
137137 assertThat (reportContents ).contains ("<error" );
@@ -155,7 +155,7 @@ public void generateXmlReportNull() throws CheckstyleException {
155155 createJavaResourceLocator ());
156156 executor .execute ();
157157
158- Assert .assertFalse (report .exists ());
158+ Assert .assertFalse ("Report should NOT exists" , report .exists ());
159159 }
160160
161161 @ Test
You can’t perform that action at this time.
0 commit comments