Checkstyle Results

The following document contains the results of Checkstyle 10.23.0 with checkstyle.xml ruleset.

Summary

Files  Info  Warnings  Errors
53 0 1705 0

Files

File  I  W  E
ClassInDefaultPackage.java 0 20 0
ClassInDefaultPackageTest.java 0 6 0
integrationTests/AbstractClassTest.java 0 12 0
integrationTests/AbstractClassWithNoExecutableLines.java 0 4 0
integrationTests/AnAnnotation.java 0 3 0
integrationTests/AnEnum.java 0 1 0
integrationTests/AnEnumTest.java 0 6 0
integrationTests/AnInterface.java 0 3 0
integrationTests/AnInterfaceTest.java 0 12 0
integrationTests/BooleanExpressions.java 0 66 0
integrationTests/BooleanExpressionsTest.java 0 60 0
integrationTests/ClassInRegularPackage.java 0 22 0
integrationTests/ClassInRegularPackageTest.java 0 9 0
integrationTests/ClassLoadedByCustomLoaderOnly.java 0 8 0
integrationTests/ClassNotExercised.java 0 8 0
integrationTests/ClassWithAnnotations.java 0 9 0
integrationTests/ClassWithNestedClasses.java 0 29 0
integrationTests/ClassWithNestedClassesTest.java 0 10 0
integrationTests/ClassWithNestedEnum.java 0 11 0
integrationTests/ClassWithNestedEnumTest.java 0 4 0
integrationTests/ClassWithReferenceToNestedClass.java 0 7 0
integrationTests/ClassWithReferenceToNestedClassTest.java 0 9 0
integrationTests/CoverageTest.java 0 136 0
integrationTests/IfElseStatements.java 0 149 0
integrationTests/IfElseStatementsTest.java 0 115 0
integrationTests/InterfaceWithExecutableCode.java 0 4 0
integrationTests/InterfaceWithExecutableCodeTest.java 0 7 0
integrationTests/MiscellaneousTest.java 0 26 0
integrationTests/MultiThreadedCode.java 0 9 0
integrationTests/MultiThreadedCodeTest.java 0 10 0
integrationTests/ShutdownTest.java 0 10 0
integrationTests/UnreachableStatements.java 0 11 0
integrationTests/UnreachableStatementsTest.java 0 37 0
integrationTests/data/ClassWithFields.java 0 44 0
integrationTests/data/ClassWithFieldsAccessedByMultipleTests.java 0 30 0
integrationTests/data/ClassWithFieldsAccessedByMultipleTestsTest.java 0 47 0
integrationTests/data/ClassWithFieldsTest.java 0 34 0
integrationTests/data/ClassWithInstanceFields.java 0 69 0
integrationTests/data/ClassWithInstanceFieldsTest.java 0 63 0
integrationTests/data/package-info.java 0 1 0
integrationTests/loops/ForStatements.java 0 61 0
integrationTests/loops/ForStatementsTest.java 0 52 0
integrationTests/loops/WhileStatements.java 0 106 0
integrationTests/loops/WhileStatementsTest.java 0 91 0
integrationTests/loops/package-info.java 0 1 0
integrationTests/otherControlStructures/SwitchStatements.java 0 93 0
integrationTests/otherControlStructures/SwitchStatementsTest.java 0 70 0
integrationTests/otherControlStructures/SynchronizedBlocks.java 0 22 0
integrationTests/otherControlStructures/SynchronizedBlocksTest.java 0 12 0
integrationTests/otherControlStructures/TryCatchFinallyStatements.java 0 64 0
integrationTests/otherControlStructures/TryCatchFinallyStatementsTest.java 0 10 0
integrationTests/otherControlStructures/package-info.java 0 1 0
integrationTests/package-info.java 0 1 0

Rules

Category Rule Violations Severity
blocks EmptyCatchBlock
  • exceptionVariableName: "expected"
2  Warning
LeftCurly
  • tokens: "ANNOTATION_DEF, CLASS_DEF, CTOR_DEF, ENUM_CONSTANT_DEF, ENUM_DEF, INTERFACE_DEF, LAMBDA, LITERAL_CASE, LITERAL_CATCH, LITERAL_DEFAULT, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_SWITCH, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, METHOD_DEF, OBJBLOCK, STATIC_INIT, RECORD_DEF, COMPACT_CTOR_DEF"
9  Warning
RightCurly
  • tokens: "CLASS_DEF, METHOD_DEF, CTOR_DEF, LITERAL_FOR, LITERAL_WHILE, STATIC_INIT, INSTANCE_INIT, ANNOTATION_DEF, ENUM_DEF, INTERFACE_DEF, RECORD_DEF, COMPACT_CTOR_DEF, LITERAL_SWITCH"
  • id: "RightCurlyAlone"
  • option: "alone"
5  Warning
RightCurly
  • tokens: "LITERAL_TRY, LITERAL_CATCH, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_DO"
  • id: "RightCurlySame"
5  Warning
coding MissingSwitchDefault 4  Warning
OneStatementPerLine 8  Warning
imports CustomImportOrder
  • separateLineBetweenGroups: "true"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
  • tokens: "IMPORT, STATIC_IMPORT, PACKAGE_DEF"
24  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "2"
  • caseIndent: "2"
  • basicOffset: "2"
  • braceAdjustment: "2"
  • lineWrappingIndentation: "4"
1582  Warning
javadoc MissingJavadocMethod
  • scope: "public"
  • tokens: "METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF"
  • minLineCount: "2"
  • allowedAnnotations: "Override, Test"
3  Warning
MissingJavadocType
  • scope: "protected"
  • excludeScope: "nothing"
  • tokens: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, RECORD_DEF, ANNOTATION_DEF"
9  Warning
naming AbbreviationAsWordInName
  • tokens: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, ANNOTATION_DEF, ANNOTATION_FIELD_DEF, PARAMETER_DEF, VARIABLE_DEF, METHOD_DEF, PATTERN_VARIABLE_DEF, RECORD_DEF, RECORD_COMPONENT_DEF"
  • ignoreFinal: "false"
  • allowedAbbreviations: "XML,URL"
  • allowedAbbreviationLength: "0"
4  Warning
MemberName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
2  Warning
MethodName
  • format: "^[a-z][a-z0-9]\w*$"
1  Warning
PackageName
  • format: "^[a-z]+(\.[a-z][a-z0-9]*)*$"
51  Warning
whitespace OperatorWrap
  • tokens: "BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR, METHOD_REF, TYPE_EXTENSION_AND "
  • option: "NL"
1  Warning

Details

ClassInDefaultPackage.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 13
 Warning indentation Indentation 'enum def modifier' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 12, expected level should be 6. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 16, expected level should be 8. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 12, expected level should be 6. 28
 Warning indentation Indentation 'static initialization' has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'static initialization' child has incorrect indentation level 12, expected level should be 6. 32
 Warning indentation Indentation 'static initialization rcurly' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'enum def rcurly' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning coding MissingSwitchDefault switch without "default" clause. 45
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 46
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 47
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 49
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 50
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 54

ClassInDefaultPackageTest.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 4
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 6
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 7
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 11
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 12

integrationTests/AbstractClassTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 28
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 33

integrationTests/AbstractClassWithNoExecutableLines.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 26

integrationTests/AnAnnotation.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 31

integrationTests/AnEnum.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1

integrationTests/AnEnumTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 15

integrationTests/AnInterface.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 23

integrationTests/AnInterfaceTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 33

integrationTests/BooleanExpressions.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 21
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 84
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 86
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 89
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 120
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 126
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 136
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 137
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 138
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 149
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 150
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 162
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 165
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 166
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 167
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 168
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 169
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 171
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 172
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 184
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 185
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 186
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 188
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 189
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 190
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 191
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 192
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 193
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 195
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 196
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 210
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 211
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 212
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 213
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 214
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 215
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 216
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 218
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 219
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 229
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 230
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 231

integrationTests/BooleanExpressionsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 76
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 84
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 107
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 108
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 110
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 112

integrationTests/ClassInRegularPackage.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'enum def modifier' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 12, expected level should be 6. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 16, expected level should be 8. 29
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 12, expected level should be 6. 30
 Warning indentation Indentation 'static initialization' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'static initialization' child has incorrect indentation level 12, expected level should be 6. 34
 Warning indentation Indentation 'static initialization rcurly' has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'enum def rcurly' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning coding MissingSwitchDefault switch without "default" clause. 47
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 48
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 49
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 51
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 52
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 53
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 57

integrationTests/ClassInRegularPackageTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 19

integrationTests/ClassLoadedByCustomLoaderOnly.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 17
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 28

integrationTests/ClassNotExercised.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 26
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 30

integrationTests/ClassWithAnnotations.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'javax.sql.DataSource' 5
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning naming MethodName Method name 'aMethod' must match pattern '^[a-z][a-z0-9]\w*$'. 35
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 36

integrationTests/ClassWithNestedClasses.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'class def modifier' has incorrect indentation level 4, expected level should be 2. 17
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 8, expected level should be 4. 20
 Warning naming MemberName Member name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 20
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 12, expected level should be 6. 26
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'class def modifier' has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 12, expected level should be 6. 40
 Warning indentation Indentation 'method def' child has incorrect indentation level 16, expected level should be 8. 41
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 12, expected level should be 6. 42
 Warning indentation Indentation 'class def rcurly' has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'class def modifier' has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 12, expected level should be 6. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 16, expected level should be 8. 57
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 12, expected level should be 6. 58
 Warning indentation Indentation 'class def rcurly' has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'class def rcurly' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 70
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 86

integrationTests/ClassWithNestedClassesTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 19

integrationTests/ClassWithNestedEnum.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'enum def ident' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'enum def rcurly' has incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'class def modifier' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 12, expected level should be 6. 26
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 12, expected level should be 6. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'class def rcurly' has incorrect indentation level 4, expected level should be 2. 38

integrationTests/ClassWithNestedEnumTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 6
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 8
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 9

integrationTests/ClassWithReferenceToNestedClass.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 13
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 24

integrationTests/ClassWithReferenceToNestedClassTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 18

integrationTests/CoverageTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'org.junit.jupiter.api.Assertions.assertEquals' 6
 Warning imports CustomImportOrder Extra separation in import group before 'java.lang.reflect.Field' 14
 Warning imports CustomImportOrder Extra separation in import group before 'mockit.coverage.CallPoint' 18
 Warning imports CustomImportOrder Extra separation in import group before 'org.checkerframework.checker.index.qual.NonNegative' 28
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 31
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 38
 Warning javadoc MissingJavadocMethod Missing a Javadoc comment. 38
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 40
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 44
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 45
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 63
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 65
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 67
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 69
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 70
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 77
 Warning indentation Indentation 'try' has incorrect indentation level 12, expected level should be 6. 79
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 80
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 81
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 12, expected level should be 6. 82
 Warning indentation Indentation 'catch' child has incorrect indentation level 16, expected level should be 8. 83
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 12, expected level should be 6. 84
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 86
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 87
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 96
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 106
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 107
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 108
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 114
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 123
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 124
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 126
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 127
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 130
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 132
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 133
 Warning indentation Indentation 'for' has incorrect indentation level 16, expected level should be 8. 135
 Warning indentation Indentation 'for' child has incorrect indentation level 20, expected level should be 10. 136
 Warning indentation Indentation 'for' child has incorrect indentation level 20, expected level should be 10. 137
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 16, expected level should be 8. 138
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 140
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 141
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 142
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 143
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 145
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 147
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 153
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 154
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 155
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 160
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 161
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 162
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 165
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 167
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 169
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 170
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 171
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 173
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 175
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 177
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 178
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 180
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 181
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 182
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 184
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 185
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 186
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 188
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 189
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 190
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 192
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 193
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 194
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 195
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 197
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 198
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 199
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 201
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 203
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 204
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 205
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 207
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 209
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 210
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 211
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 212
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 213
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 215
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 217
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 218
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 219
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 220
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 221

integrationTests/IfElseStatements.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 17
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 18
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 30
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 32
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 44
 Warning blocks LeftCurly '{' at column 16 should have line break after. 44
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 56
 Warning blocks LeftCurly '{' at column 16 should have line break after. 56
 Warning blocks LeftCurly '{' at column 38 should have line break after. 56
 Warning coding OneStatementPerLine Only one statement per line allowed. 56
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 70
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 72
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 76
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 90
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 92
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 96
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 98
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 100
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 115
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 118
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 135
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 137
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 138
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 141
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 142
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 143
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 145
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 147
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 151
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 163
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 164
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 166
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 167
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 168
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 170
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 171
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 183
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 184
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 186
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 187
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 188
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 189
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 190
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 191
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 193
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 194
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 206
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 207
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 209
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 210
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 211
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 212
 Warning indentation Indentation 'else' child has incorrect indentation level 16, expected level should be 8. 213
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 12, expected level should be 6. 214
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 215
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 216
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 217
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 219
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 220
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 228
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 229
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 230
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 231
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 233
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 234
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 235
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 236
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 246
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 248
 Warning blocks LeftCurly '{' at column 23 should have line break after. 248
 Warning coding OneStatementPerLine Only one statement per line allowed. 248
 Warning blocks LeftCurly '{' at column 39 should have line break after. 248
 Warning coding OneStatementPerLine Only one statement per line allowed. 248
 Warning blocks RightCurly '}' at column 48 should be alone on a line. 248
 Warning coding OneStatementPerLine Only one statement per line allowed. 248
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 250
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 260
 Warning blocks LeftCurly '{' at column 16 should have line break after. 262
 Warning blocks RightCurly '}' at column 28 should be alone on a line. 262
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 262
 Warning coding OneStatementPerLine Only one statement per line allowed. 262
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 264
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 274
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 275
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 276
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 277
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 278
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 288
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 289
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 290
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 291
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 292
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 302
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 303
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 304
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 305
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 306
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 316
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 318
 Warning indentation Indentation 'b' has incorrect indentation level 11, expected level should be 12. 319
 Warning whitespace OperatorWrap '||' should be on a new line. 319
 Warning indentation Indentation 'i' has incorrect indentation level 11, expected level should be 12. 320
 Warning indentation Indentation 'if rparen' has incorrect indentation level 8, expected level should be 4. 321
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 322
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 323
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 325
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 335
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 336
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 338
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 339
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 340
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 342
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 343
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 346

integrationTests/IfElseStatementsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 21
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 22
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 28
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 84
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 90
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 92
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 101
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 109
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 111
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 113
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 117
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 119
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 126
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 128
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 129
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 130
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 132
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 133
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 134
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 135
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 136
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 138
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 141
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 144
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 146
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 149
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 153
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 155
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 157
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 158
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 159
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 160
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 163
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 165
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 167
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 168
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 171
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 173
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 175
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 176
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 177
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 179
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 180
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 181
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 182
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 183

integrationTests/InterfaceWithExecutableCode.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 17

integrationTests/InterfaceWithExecutableCodeTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 16

integrationTests/MiscellaneousTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'org.junit.jupiter.api.Assertions.assertNotNull' 5
 Warning imports CustomImportOrder Extra separation in import group before 'mockit.Injectable' 13
 Warning imports CustomImportOrder Extra separation in import group before 'org.junit.jupiter.api.Test' 17
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 20
 Warning naming AbbreviationAsWordInName Abbreviation in name 'methodWithIINCWideInstruction' must contain no more than '1' consecutive capital letters. 21
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 22
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'annotation def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'annotation def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'annotation def rcurly' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'class def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'class def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'class def rcurly' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 51

integrationTests/MultiThreadedCode.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 13
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning blocks LeftCurly '{' at column 9 should be on the previous line. 15
 Warning indentation Indentation 'object def lcurly' has incorrect indentation level 8, expected level should be one of the following: 10, 12, 14. 15
 Warning indentation Indentation 'object def rcurly' has incorrect indentation level 8, expected level should be one of the following: 10, 12, 14. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 20

integrationTests/MultiThreadedCodeTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 6
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 10
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 17

integrationTests/ShutdownTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 6
 Warning naming AbbreviationAsWordInName Abbreviation in name 'addShutdownHookToExerciseSUTAfterTestRunHasFinished' must contain no more than '1' consecutive capital letters. 7
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 8
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 16
 Warning naming AbbreviationAsWordInName Abbreviation in name 'exerciseSUT' must contain no more than '1' consecutive capital letters. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 19

integrationTests/UnreachableStatements.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 26
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 30

integrationTests/UnreachableStatementsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 19
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 20
 Warning blocks EmptyCatchBlock Empty catch block. 20
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 21
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 39
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 45
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 46
 Warning blocks EmptyCatchBlock Empty catch block. 46
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 54

integrationTests/data/ClassWithFields.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.data' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 3
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 4
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 5
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 6
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 64
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 65

integrationTests/data/ClassWithFieldsAccessedByMultipleTests.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.data' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 3
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 4
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 5
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 7
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 11
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 39
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 40

integrationTests/data/ClassWithFieldsAccessedByMultipleTestsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.data' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'integrationTests.CoverageTest' 6
 Warning imports CustomImportOrder Wrong lexicographical order for 'integrationTests.CoverageTest' import. Should be before 'org.junit.jupiter.api.Test'. 6
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 40
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 75
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 78

integrationTests/data/ClassWithFieldsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.data' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'integrationTests.CoverageTest' 6
 Warning imports CustomImportOrder Wrong lexicographical order for 'integrationTests.CoverageTest' import. Should be before 'org.junit.jupiter.api.Test'. 6
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 22
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 63

integrationTests/data/ClassWithInstanceFields.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.data' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 5
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 7
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 13
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 17
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 22
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 75
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 77
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 79
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 83
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 85
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 87
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 89
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 95

integrationTests/data/ClassWithInstanceFieldsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.data' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'integrationTests.CoverageTest' 6
 Warning imports CustomImportOrder Wrong lexicographical order for 'integrationTests.CoverageTest' import. Should be before 'org.junit.jupiter.api.Test'. 6
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 20
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 39
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 40
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 75
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 77
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 87
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 89
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 98
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 100
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 118
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 126
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 127

integrationTests/data/package-info.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.data' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1

integrationTests/loops/ForStatements.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.loops' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 7
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 9
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 10
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 11
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 16
 Warning blocks LeftCurly '{' at column 28 should have line break after. 16
 Warning blocks RightCurly '}' at column 43 should be alone on a line. 16
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 21
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 24
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 34
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 42
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 44
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 45
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 46
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 52
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 53
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 54
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 55
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 57
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 58
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 59
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'for' has incorrect indentation level 12, expected level should be 6. 67
 Warning indentation Indentation 'for' child has incorrect indentation level 16, expected level should be 8. 68
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 12, expected level should be 6. 69
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 75
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 76
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 77
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 81

integrationTests/loops/ForStatementsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.loops' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'org.junit.jupiter.api.Assertions.assertEquals' 5
 Warning imports CustomImportOrder Extra separation in import group before 'org.junit.jupiter.api.Disabled' 10
 Warning imports CustomImportOrder Extra separation in import group before 'integrationTests.CoverageTest' 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'integrationTests.CoverageTest' import. Should be before 'org.junit.jupiter.api.Test'. 13
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 20
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 21
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 76
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 80

integrationTests/loops/WhileStatements.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.loops' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 6
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 15
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 17
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 21
 Warning blocks LeftCurly '{' at column 23 should have line break after. 21
 Warning blocks RightCurly '}' at column 30 should be alone on a line. 21
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 27
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 28
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 29
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 30
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 32
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 39
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 40
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 41
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 42
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 44
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'while' has incorrect indentation level 12, expected level should be 6. 52
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 53
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 12, expected level should be 6. 54
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 56
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'do..while' has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'do..while' child has incorrect indentation level 12, expected level should be 6. 64
 Warning indentation Indentation 'do..while rcurly' has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 66
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'do..while' has incorrect indentation level 12, expected level should be 6. 70
 Warning indentation Indentation 'do..while' child has incorrect indentation level 16, expected level should be 8. 71
 Warning indentation Indentation 'do..while rcurly' has incorrect indentation level 12, expected level should be 6. 72
 Warning blocks RightCurly '}' at column 13 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 72
 Warning indentation Indentation 'do..while while' has incorrect indentation level 12, expected level should be 6. 74
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 77
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 79
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 80
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 81
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 83
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 85
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 87
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 89
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 90
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 91
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 95
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 97
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 98
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 99
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 101
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 103
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 107
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 108
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 109
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 111
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 112
 Warning indentation Indentation 'try' has incorrect indentation level 12, expected level should be 6. 113
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 114
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 12, expected level should be 6. 115
 Warning indentation Indentation 'finally' child has incorrect indentation level 16, expected level should be 8. 116
 Warning indentation Indentation 'finally rcurly' has incorrect indentation level 12, expected level should be 6. 117
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 118
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 119
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 121
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 122
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 123
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 125
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 126
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 128
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 129
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 130
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 131
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 132
 Warning indentation Indentation 'else' child has incorrect indentation level 16, expected level should be 8. 133
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 12, expected level should be 6. 134
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 136
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 137
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 140

integrationTests/loops/WhileStatementsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.loops' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'integrationTests.CoverageTest' 6
 Warning imports CustomImportOrder Wrong lexicographical order for 'integrationTests.CoverageTest' import. Should be before 'org.junit.jupiter.api.Test'. 6
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 28
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 39
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 64
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 82
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 84
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 95
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 106
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 110
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 113
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 115
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 120
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 124
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 125
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 127
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 129
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 132
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 134

integrationTests/loops/package-info.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.loops' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1

integrationTests/otherControlStructures/SwitchStatements.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.otherControlStructures' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 3
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 4
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 5
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 6
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 7
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 8
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 9
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 10
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 11
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 12
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 13
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be 6. 14
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 15
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 16
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 17
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 18
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 23
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 24
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 25
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 26
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 27
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 28
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 34
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 35
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 36
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 37
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 38
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 39
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 40
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 41
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be 6. 42
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 43
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 44
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 45
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 46
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 53
 Warning coding OneStatementPerLine Only one statement per line allowed. 53
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 54
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning coding MissingSwitchDefault switch without "default" clause. 60
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 61
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 62
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 63
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 64
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 65
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 66
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning coding MissingSwitchDefault switch without "default" clause. 74
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 75
 Warning coding OneStatementPerLine Only one statement per line allowed. 75
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 76
 Warning coding OneStatementPerLine Only one statement per line allowed. 76
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 77
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 82
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 84
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 86
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 87
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 88
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 89
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 90
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 91
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 95
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 97
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 98
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 99
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 100
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 102

integrationTests/otherControlStructures/SwitchStatementsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.otherControlStructures' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'integrationTests.CoverageTest' 5
 Warning imports CustomImportOrder Wrong lexicographical order for 'integrationTests.CoverageTest' import. Should be before 'org.junit.jupiter.api.Test'. 5
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 20
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 21
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 90
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 92
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 100

integrationTests/otherControlStructures/SynchronizedBlocks.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.otherControlStructures' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 3
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 4
 Warning naming AbbreviationAsWordInName Abbreviation in name 'LOCK' must contain no more than '1' consecutive capital letters. 4
 Warning naming MemberName Member name 'LOCK' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 4
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 6
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 7
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning javadoc MissingJavadocMethod Missing a Javadoc comment. 10
 Warning indentation Indentation 'synchronized' has incorrect indentation level 8, expected level should be 4. 11
 Warning indentation Indentation 'synchronized' child has incorrect indentation level 12, expected level should be 6. 13
 Warning indentation Indentation 'synchronized rcurly' has incorrect indentation level 8, expected level should be 4. 14
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 17
 Warning javadoc MissingJavadocMethod Missing a Javadoc comment. 17
 Warning indentation Indentation 'synchronized' has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 19
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 20
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 21
 Warning indentation Indentation 'synchronized rcurly' has incorrect indentation level 8, expected level should be 4. 22
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 23

integrationTests/otherControlStructures/SynchronizedBlocksTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.otherControlStructures' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 7
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 9
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 11
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 16
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 17
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 21
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 22
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 24

integrationTests/otherControlStructures/TryCatchFinallyStatements.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.otherControlStructures' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 3
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 4
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 5
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 6
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 7
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 8
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 9
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 13
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 14
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 15
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 16
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 21
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 22
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 23
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 24
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 25
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'finally' child has incorrect indentation level 12, expected level should be 6. 27
 Warning indentation Indentation 'finally rcurly' has incorrect indentation level 8, expected level should be 4. 28
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'try' has incorrect indentation level 12, expected level should be 6. 34
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 35
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 12, expected level should be 6. 36
 Warning indentation Indentation 'finally' child has incorrect indentation level 16, expected level should be 8. 37
 Warning indentation Indentation 'finally rcurly' has incorrect indentation level 12, expected level should be 6. 38
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 39
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 40
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'try' has incorrect indentation level 12, expected level should be 6. 46
 Warning indentation Indentation 'try' has incorrect indentation level 16, expected level should be 8. 47
 Warning indentation Indentation 'try' child has incorrect indentation level 20, expected level should be 10. 48
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 16, expected level should be 8. 50
 Warning indentation Indentation 'finally' child has incorrect indentation level 20, expected level should be 10. 51
 Warning indentation Indentation 'finally rcurly' has incorrect indentation level 16, expected level should be 8. 52
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 53
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 55
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 12, expected level should be 6. 57
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 58
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 60
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 61
 Warning indentation Indentation 'finally rcurly' has incorrect indentation level 12, expected level should be 6. 62
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 66
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 70
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 72
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 73
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 74
 Warning indentation Indentation 'finally rcurly' has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 76

integrationTests/otherControlStructures/TryCatchFinallyStatementsTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.otherControlStructures' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1
 Warning imports CustomImportOrder Extra separation in import group before 'integrationTests.CoverageTest' 5
 Warning imports CustomImportOrder Wrong lexicographical order for 'integrationTests.CoverageTest' import. Should be before 'org.junit.jupiter.api.Test'. 5
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 8
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 10
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 12
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 13
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 18

integrationTests/otherControlStructures/package-info.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests.otherControlStructures' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1

integrationTests/package-info.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'integrationTests' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 1