15 lines
329 B
Java
15 lines
329 B
Java
|
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/",
|
||
|
glue = {"steps"},
|
||
|
plugin = {"pretty"})
|
||
|
public class DemoRunner {
|
||
|
|
||
|
}
|