cookercucumber_reporter.CookReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cooker-maven-plugin Show documentation
Show all versions of cooker-maven-plugin Show documentation
Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and
concise reporting
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!!";
}
}