com.github.timm.cucumber.generate.CucumberITGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-jvm-parallel-plugin Show documentation
Show all versions of cucumber-jvm-parallel-plugin Show documentation
Plugin for assisting with running Cucumber-JVM features in parallel
package com.github.timm.cucumber.generate;
import org.apache.maven.plugin.MojoExecutionException;
import java.io.File;
import java.util.Collection;
public interface CucumberITGenerator {
/**
* Generates Cucumber runners.
* @param outputDirectory the output directory to place generated files
* @param featureFiles The feature files to create runners for
* @throws MojoExecutionException if something goes wrong
*/
void generateCucumberITFiles(final File outputDirectory, final Collection featureFiles)
throws MojoExecutionException;
}