diff --git a/integration-tests/checkstyle-10.12.4-expected-changes.patch b/integration-tests/checkstyle-10.12.4-expected-changes.patch index 4ef2b9af3f0..769f2125ac9 100644 --- a/integration-tests/checkstyle-10.12.4-expected-changes.patch +++ b/integration-tests/checkstyle-10.12.4-expected-changes.patch @@ -63763,6 +63763,7 @@ @Test - public void testExample14() throws Exception { + void example14() throws Exception { + // FOO final String[] expected = {}; verifyWithInlineConfigParser(getPath("Example14.txt"), expected); diff --git a/integration-tests/checkstyle-10.12.4-expected-warnings.txt b/integration-tests/checkstyle-10.12.4-expected-warnings.txt index 283be35a3bd..79b1a6fb7ef 100644 --- a/integration-tests/checkstyle-10.12.4-expected-warnings.txt +++ b/integration-tests/checkstyle-10.12.4-expected-warnings.txt @@ -138,3 +138,4 @@ src/test/java/com/puppycrawl/tools/checkstyle/utils/CheckUtilTest.java:[71,8] [J src/test/java/com/puppycrawl/tools/checkstyle/xpath/XpathQueryGeneratorTest.java:[205,8] [JUnitMethodDeclaration] This method's name should not redundantly start with `test` (but note that `package` is not a valid identifier) src/test/java/com/puppycrawl/tools/checkstyle/xpath/XpathQueryGeneratorTest.java:[219,8] [JUnitMethodDeclaration] This method's name should not redundantly start with `test` (but note that `import` is not a valid identifier) src/test/java/com/puppycrawl/tools/checkstyle/xpath/XpathQueryGeneratorTest.java:[265,8] [JUnitMethodDeclaration] This method's name should not redundantly start with `test` (but note that `switch` is not a valid identifier) + // FOO