Skip to content

Instantly share code, notes, and snippets.

@dherges
Created October 16, 2016 20:36
Show Gist options
  • Save dherges/a6b22f21dad4251553e28668c8406c59 to your computer and use it in GitHub Desktop.
Save dherges/a6b22f21dad4251553e28668c8406c59 to your computer and use it in GitHub Desktop.
spring-cucumber
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ContextConfiguration;
import cucumber.api.java8.En;
import spring.cucumber.demo.TwitterApp;
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@ContextConfiguration(classes = TwitterApp.class)
public class AppSteps implements En {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment