All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cookercucumber_reporter.CookReport Maven / Gradle / Ivy

Go to download

Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and concise reporting

There is a newer version: 3.1.0
Show newest version
package cookercucumber_reporter;

import cookerMojoTrigger.MojoLogger;

import java.util.List;

/**
 * @author Manjunath Prabhakar (Manjunath-PC)
 * @created 23/09/2020
 * @project cooker-maven-plugin
 */
public class CookReport {

    public String showReport(String jsonPath) throws Exception {
        List res = new Reporter().generateReport(jsonPath);
        for (String s : res
        ) {
            MojoLogger.getLogger().info(s);
        }
        return "Coming soon!!";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy