I have a bunch of feature files(around 15) where each feature file has a thread that needs to sleep for atleast 3 mins (for some complex background app to execute some functions). I need a way to execute all of them in parallel.
I have a simple CucumberRunnerTestCLass.
@RunWith(Cucumber.class)
@CucumberOptions(features = "src/test/java/com/sample/demo/features",glue{""}, plugin = {"pretty","html:target/cucumber"}, tags = {"@integrationTesting"})
public class JUnitRunnerTest {
}
Any help is very appreciated. Thanks