-
Annotation Types Annotation Type Description io.cucumber.junit.platform.engine.Cucumber Please use the JUnit Platform Suite to run Cucumber in combination with Surefire or Gradle. E.g:package com.example; import org.junit.platform.suite.api.ConfigurationParameter; import org.junit.platform.suite.api.SelectClasspathResource; import org.junit.platform.suite.api.Suite; import static io.cucumber.junit.platform.engine.Constants.GLUE_PROPERTY_NAME; @Suite @SelectClasspathResource("com/example") @ConfigurationParameter( key = GLUE_PROPERTY_NAME, value = "com.example" ) public class RunCucumberTest { }