Package org.sonar.core.metric

Examples of org.sonar.core.metric.DefaultMetricFinder


  private DefaultMetricFinder finder;

  @Before
  public void setUp() {
    setupData("shared");
    finder = new DefaultMetricFinder(getSessionFactory());
  }
View Full Code Here


    setupData("testCopyManualMeasures");

    File javaFile = new File("Foo.java");
    javaFile.setId(40);

    ManualMeasureDecorator decorator = new ManualMeasureDecorator(getSession(), new DefaultMetricFinder(getSessionFactory()));
    DecoratorContext context = mock(DecoratorContext.class);
    decorator.decorate(javaFile, context);

    verify(context).saveMeasure(argThat(new IsMeasure(reviewNote, 6.0, "six")));
  }
View Full Code Here

TOP

Related Classes of org.sonar.core.metric.DefaultMetricFinder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.