Package org.apache.maven.continuum.reports.surefire

Examples of org.apache.maven.continuum.reports.surefire.ReportTestSuite


        float totalTime = 0.0f;

        for ( Iterator suites = suiteList.iterator(); suites.hasNext(); )
        {

            ReportTestSuite suite = (ReportTestSuite) suites.next();

            totalTests += suite.getNumberOfTests();

            totalErrors += suite.getNumberOfErrors();

            totalFailures += suite.getNumberOfFailures();

            totalTime += suite.getTimeElapsed();
        }

        ReportTest report = new ReportTest();
        report.setTests( totalTests );
        report.setErrors( totalErrors );
View Full Code Here


        float totalTime = 0.0f;

        for ( Iterator suites = suiteList.iterator(); suites.hasNext(); )
        {

            ReportTestSuite suite = (ReportTestSuite) suites.next();

            totalTests += suite.getNumberOfTests();

            totalErrors += suite.getNumberOfErrors();

            totalFailures += suite.getNumberOfFailures();

            totalTime += suite.getTimeElapsed();
        }

        ReportTest report = new ReportTest();
        report.setTests( totalTests );
        report.setErrors( totalErrors );
View Full Code Here

TOP

Related Classes of org.apache.maven.continuum.reports.surefire.ReportTestSuite

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.