Package org.eluder.coveralls.maven.plugin.parser

Examples of org.eluder.coveralls.maven.plugin.parser.SagaParser


        }
        for (File coberturaFile : coberturaFiles) {
            parsers.add(new CoberturaParser(coberturaFile, sourceLoader));
        }
        for (File sagaFile : sagaFiles) {
            parsers.add(new SagaParser(sagaFile, sourceLoader));
        }
       
        if (parsers.isEmpty()) {
            throw new IOException("No coverage report files found");
        }
View Full Code Here

TOP

Related Classes of org.eluder.coveralls.maven.plugin.parser.SagaParser

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.