I want to run cucumber for my test, but without run first my api rest, for this reason I include @IntegrationTest in my RunCakes. class, but when I run my integration test, the application don't start.
@RunWith(Cucumber.class)
@CucumberOptions(format = { "pretty", "html:target/cucumber-html- report" }, dryRun = false, strict = true, features = { "classpath:features" })
@IntegrationTest({ "server.port=9001", "spring.cloud.config.server.git.uri=file:./target/repos/configuration-sample",
"spring.cloud.config.server.bootstrap=false", "ldap.uri=" , "security.ignored="})
public class RunCukesIT {
}