Package com.google.test.metric.report

Examples of com.google.test.metric.report.TextReport


    if (entryList.isEmpty()) {
      entryList.add("");
    }
    classpath = ClasspathRootFactory.makeClasspathRootGroup(cp);
    if (printer.equals("summary")) {
      report = new TextReport(out, maxExcellentCost, maxAcceptableCost, worstOffenderCount);
    } else if (printer.equals("html")) {
      report = new HtmlReport(out, maxExcellentCost, maxAcceptableCost, worstOffenderCount);
    } else if (printer.equals("detail")) {
      report = new DrillDownReport(out, entryList, printDepth, minCost);
    } else {
View Full Code Here

TOP

Related Classes of com.google.test.metric.report.TextReport

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.