Package com.thoughtworks.xstream.tools.benchmark.reporters

Examples of com.thoughtworks.xstream.tools.benchmark.reporters.HtmlReporter


        try {
            String basename = "target/benchmarks/xmlfriendly-"
                + System.getProperty("user.name");
            reporters = new Reporter[]{
                new TextReporter(), new TextReporter(new FileWriter(basename + ".txt")),
                new HtmlReporter(new File(basename + ".html"), "XmlFriendlyReplacer Benchmark")};
        } catch (IOException e) {
            throw new RuntimeException(e);
        }

        Harness stats = new Harness();
View Full Code Here

TOP

Related Classes of com.thoughtworks.xstream.tools.benchmark.reporters.HtmlReporter

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.