Package com.google.test.metric.report

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


    }
    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 {
      throw new CmdLineException("Don't understand '-print' option '"
          + printer + "'");
View Full Code Here

TOP

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

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.