Last active
October 16, 2016 20:35
-
-
Save dherges/52ab00a7c953fdc1bfce49c0bcdaf789 to your computer and use it in GitHub Desktop.
spring-cucumber
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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