RunCucumberTest.java

10 lines | 233 B Blame History Raw Download
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 {
}