aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputInvalidLabelIndent.java
blob: c05261f52fddd57c46e2179043502a70e04c4106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0

/**                                                                           //indent:0 exp:0
 * This test-input is intended to be checked using following configuration:   //indent:1 exp:1
 *                                                                            //indent:1 exp:1
 * arrayInitIndent = 4                                                        //indent:1 exp:1
 * basicOffset = 4                                                            //indent:1 exp:1
 * braceAdjustment = 0                                                        //indent:1 exp:1
 * caseIndent = 4                                                             //indent:1 exp:1
 * forceStrictCondition = false                                               //indent:1 exp:1
 * lineWrappingIndentation = 4                                                //indent:1 exp:1
 * tabWidth = 4                                                               //indent:1 exp:1
 * throwsIndent = 4                                                           //indent:1 exp:1
 *                                                                            //indent:1 exp:1
 * @author  jrichard                                                         //indent:1 exp:1
 */                                                                           //indent:1 exp:1
public class InputInvalidLabelIndent { //indent:0 exp:0

    /** Creates a new instance of InputInvalidLabelIndent */ //indent:4 exp:4
    public InputInvalidLabelIndent() { //indent:4 exp:4
        boolean test = true; //indent:8 exp:8

        while (test) { //indent:8 exp:8
          label: //indent:10 exp:8,12 warn
            System.identityHashCode("label test"); //indent:12 exp:12

            if (test) { //indent:12 exp:12
                unusedLabel: //indent:16 exp:16
                System.identityHashCode("more testing"); //indent:16 exp:16
            } //indent:12 exp:12

        } //indent:8 exp:8
  label2: //indent:2 exp:4,8 warn
        System.identityHashCode("toplevel"); //indent:8 exp:8
    label3: //indent:4 exp:4
                  System.identityHashCode("toplevel"); //indent:18 exp:8,12 warn
                  System.identityHashCode("toplevel"); //indent:18 exp:8 warn
    label4: //indent:4 exp:4
      System.identityHashCode("toplevel"); //indent:6 exp:8,12 warn
    label5: //indent:4 exp:4
      String //indent:6 exp:8,12 warn
            .CASE_INSENSITIVE_ORDER. //indent:12 exp:>=10
                equals("toplevel"); //indent:16 exp:>=16
    } //indent:4 exp:4

} //indent:0 exp:0