mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 14:28:43 +00:00
97696cc95b
#story[1111] #pair[kre39,ptg19]
13 lines
261 B
Java
13 lines
261 B
Java
import cucumber.api.CucumberOptions;
|
|
import cucumber.api.junit.Cucumber;
|
|
import org.junit.runner.RunWith;
|
|
|
|
/**
|
|
* Created by kre39 on 7/08/17.
|
|
*/
|
|
|
|
@RunWith(Cucumber.class)
|
|
@CucumberOptions(features = "src/test/java/features")
|
|
public class RunCucumberTests {
|
|
}
|