Package org.sonar.plugins.javascript.unittest.surefireparser

Examples of org.sonar.plugins.javascript.unittest.surefireparser.AbstractSurefireParser


  }

  protected void collect(final SensorContext context, File reportsDir) {
    LOG.info("Parsing Unit Test run results in Surefire format from folder {}", reportsDir);

    new AbstractSurefireParser() {

      @Override
      protected Resource<?> getUnitTestResource(String classKey) {
        File unitTestFile = getUnitTestFile(fileSystem.testDirs(), getUnitTestFileName(classKey));
        return context.getResource(new org.sonar.api.resources.File(unitTestFile.getParent(), unitTestFile.getName()));
View Full Code Here

TOP

Related Classes of org.sonar.plugins.javascript.unittest.surefireparser.AbstractSurefireParser

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.