]> source.dussan.org Git - sonarqube.git/blob
964d51977b85e1bcd2cde5f293df8a45d51f51be
[sonarqube.git] /
1 /*
2  * Sonar, open source software quality management tool.
3  * Copyright (C) 2008-2011 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * Sonar is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * Sonar is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Sonar; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
19  */
20 package org.sonar.plugins.squid.bridges;
21
22 import org.junit.Test;
23 import org.sonar.api.measures.CoreMetrics;
24 import org.sonar.api.resources.JavaFile;
25 import org.sonar.api.resources.JavaPackage;
26
27 import static org.mockito.Matchers.anyDouble;
28 import static org.mockito.Matchers.eq;
29 import static org.mockito.Mockito.never;
30 import static org.mockito.Mockito.verify;
31
32 public class ChidamberKemererBridgeTest extends BridgeTestCase {
33
34   @Test
35   public void depthInTree() {
36     verify(context).saveMeasure(new JavaFile("org.apache.struts.config.FormBeanConfig"), CoreMetrics.DEPTH_IN_TREE, 2.0);
37     verify(context, never()).saveMeasure(eq(new JavaPackage("org.apache.struts.config")), eq(CoreMetrics.DEPTH_IN_TREE), anyDouble());
38     verify(context, never()).saveMeasure(eq(project), eq(CoreMetrics.DEPTH_IN_TREE), anyDouble());
39   }
40
41   @Test
42   public void numberOfChildren() {
43     verify(context).saveMeasure(eq(new JavaFile("org.apache.struts.config.BaseConfig")), eq(CoreMetrics.NUMBER_OF_CHILDREN), anyDouble());
44     verify(context, never()).saveMeasure(eq(new JavaPackage("org.apache.struts.config")), eq(CoreMetrics.NUMBER_OF_CHILDREN), anyDouble());
45     verify(context, never()).saveMeasure(eq(project), eq(CoreMetrics.NUMBER_OF_CHILDREN), anyDouble());
46   }
47
48   @Test
49   public void lcom4() {
50     verify(context).saveMeasure(eq(new JavaFile("org.apache.struts.config.BaseConfig")), eq(CoreMetrics.LCOM4), anyDouble());
51     verify(context, never()).saveMeasure(eq(new JavaPackage("org.apache.struts.config")), eq(CoreMetrics.LCOM4), anyDouble());
52     verify(context, never()).saveMeasure(eq(project), eq(CoreMetrics.LCOM4), anyDouble());
53   }
54 }