RunCucumberTest.java
Home
/
src /
test /
java /
gr /
gousiosg /
javacg /
RunCucumberTest.java
package gr.gousiosg.javacg;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(plugin = { "pretty" })
public class RunCucumberTest {
}