Skip to content

Instantly share code, notes, and snippets.

@dherges
Last active October 16, 2016 20:35
Show Gist options
  • Save dherges/52ab00a7c953fdc1bfce49c0bcdaf789 to your computer and use it in GitHub Desktop.
Save dherges/52ab00a7c953fdc1bfce49c0bcdaf789 to your computer and use it in GitHub Desktop.
spring-cucumber
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/resources/features",
monochrome = true,
plugin = {"pretty", "html:build/reports/cucumber"}
)
public class TwitterAppTest {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment