2023-01-26 16:02:12 +00:00
|
|
|
package org.example.webtests.runner;
|
2023-01-25 16:39:47 +00:00
|
|
|
|
|
|
|
import io.cucumber.junit.Cucumber;
|
|
|
|
import io.cucumber.junit.CucumberOptions;
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
|
|
|
|
@RunWith(Cucumber.class)
|
|
|
|
@CucumberOptions(
|
2023-01-26 16:02:12 +00:00
|
|
|
features = "src/test/java/org/example/webtests/features/",
|
|
|
|
glue = {"org.example.webtests.steps"},
|
2023-01-27 12:47:29 +00:00
|
|
|
plugin = {
|
|
|
|
"pretty",
|
2023-01-27 15:37:08 +00:00
|
|
|
"html:target/test-reports/cucumber-report.html",
|
|
|
|
"json:target/test-reports/cucumber.json",
|
|
|
|
"pretty:target/test-reports/cucumber-pretty.txt",
|
|
|
|
"usage:target/test-reports/cucumber-usage.json",
|
|
|
|
"junit:target/test-reports/cucumber-results.xml"
|
2023-01-27 12:47:29 +00:00
|
|
|
},
|
|
|
|
publish = false,
|
|
|
|
stepNotifications = true
|
2023-01-26 11:14:19 +00:00
|
|
|
)
|
2023-01-25 16:39:47 +00:00
|
|
|
public class DemoRunner {
|
|
|
|
|
|
|
|
}
|