mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2026-05-26 12:38:03 +00:00
13 lines
280 B
Java
13 lines
280 B
Java
import cucumber.api.CucumberOptions;
|
|
import cucumber.api.junit.Cucumber;
|
|
import org.junit.runner.RunWith;
|
|
|
|
@RunWith(Cucumber.class)
|
|
@CucumberOptions(
|
|
features = {"src/test/resource/searchProduct.feature",
|
|
"src/test/resource/priceAlarms.feature"}
|
|
)
|
|
|
|
public class RunTest {
|
|
}
|