Package ch.hortis.sonar.core.service

Examples of ch.hortis.sonar.core.service.MissingUnitTestsService


  protected List<Service> getTaskServices() {
    List<ch.hortis.sonar.service.Service> dbServices =
      Collections.unmodifiableList(ch.hortis.sonar.service.Service.getAllServices(getEntityManager()));
   
    List<Service> services = new ArrayList<Service>();
    services.add(new MissingUnitTestsService());
    services.add(new SumCalculator(Metrics.CHANGELOG_COMMITS));
    services.add(new SumCalculator(Metrics.CHANGELOG_FILE_COMMITS));
    services.add(new SumCalculator(Metrics.NCSS_CLASSES));
    services.add(new SumCalculator(Metrics.CYCLOMATIC_COMPLEXITY));
    services.add(new SumCalculator(Metrics.NCSS_FUNCTIONS));
View Full Code Here

TOP

Related Classes of ch.hortis.sonar.core.service.MissingUnitTestsService

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.