2023-01-25 16:39:47 +00:00
|
|
|
package org.example.runner;
|
|
|
|
|
|
|
|
import io.cucumber.junit.Cucumber;
|
|
|
|
import io.cucumber.junit.CucumberOptions;
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
|
|
|
|
@RunWith(Cucumber.class)
|
|
|
|
@CucumberOptions(
|
|
|
|
features = "src/test/java/org/example/features/",
|
2023-01-26 11:14:19 +00:00
|
|
|
glue = {"org.example.steps"},
|
|
|
|
plugin = {"pretty"},
|
|
|
|
publish = true
|
|
|
|
)
|
2023-01-25 16:39:47 +00:00
|
|
|
public class DemoRunner {
|
|
|
|
|
|
|
|
}
|