Examples of RcovParser


Examples of hudson.plugins.rubyMetrics.rcov.RcovParser

        return "Rcov report for: " + result.getName();
    }

    public String loadSourceCode() {
        try {
            RcovParser parser = new RcovParser(owner.getRootDir());
            return parser.parseSource(getResult().getLinkPath());
        } catch (IOException e) {
            LOGGER.log(SEVERE, Messages.RcovFileDetail_ParseError(result.getName()), e);
            return Messages.RcovFileDetail_ParseErrorHtml(e.getMessage());
        } catch (ParserException e) {
            LOGGER.log(SEVERE, Messages.RcovFileDetail_ParseError(result.getName()), e);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.