Package org.apache.qpid.disttest.results.formatting

Examples of org.apache.qpid.disttest.results.formatting.CSVFormater


    private void writeResultsToFile(ResultsForAllTests resultsForAllTests, String outputFile)
    {
        FileWriter writer = null;
        try
        {
            final String outputCsv = new CSVFormater().format(resultsForAllTests);
            writer = new FileWriter(outputFile);
            writer.write(outputCsv);
            LOGGER.info("Wrote " + resultsForAllTests.getTestResults().size() + " test result(s) to output file " + outputFile);
        }
        catch (IOException e)
View Full Code Here

TOP

Related Classes of org.apache.qpid.disttest.results.formatting.CSVFormater

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.