aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-squid-java-plugin/test-resources/metrics/ncloc/TestNclocWithHeader.java
blob: 7df94e49655902740824d7d41977ec598da290c9 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * License test
 * header
 * 
 * with blank
 * 
 * lines
 */



/**
 * This is a nice comments header
 * 
 * And it should ne be included in ncloc
 * 
 */
public class ClassWithStaticMethodsAndCommentHeader {

  public static void doJob1() {
    int i = 3;
    if (i == 4) {
      i++;
    }
  }
  
  /**
   * 
   * qsdfqsdf
   */
  public static void doJob2() {
    int i = 3;
    if (i == 4) {
      if (i == 3) {
        i--;
        //mlkqjdsf
        //
        //another comment
      }
    }
  }
  public class Toto{
    public static void doJob2() {
      int i = 3;
      if (i == 4) {
        if (i == 3) {
          i--;
        }
      }
    }
    
  }
  
  
  
  
  

}