myers.cucumber-jvm-parallel-plugin.2.2.0.source-code.cucumber-testng-runner.vm 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
#if ($packageName)package $packageName;
#end##
import cucumber.api.CucumberOptions;
import cucumber.api.testng.AbstractTestNGCucumberTests;
@CucumberOptions(strict = $strict,
features = {"$featureFile"},
plugin = {$reports},
monochrome = ${monochrome},
#if(!$featureFile.contains(".feature:") ) tags = {#if($tags)$tags#end}, #end
glue = { $glue })
public class $className extends AbstractTestNGCucumberTests {
}