Advertisement
Guest User

Untitled

a guest
Nov 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package cucumber;
  2.  
  3.  
  4. import cucumber.api.CucumberOptions;
  5. import cucumber.api.junit.Cucumber;
  6. import org.junit.runner.RunWith;
  7.  
  8. @RunWith(Cucumber.class)
  9. @CucumberOptions(plugin = "pretty", features = "src/test/java/cucumber", glue = {"cucumber"})
  10. public class FootballClubAddTest {
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement