Skip to content

Commit 4c2873c

Browse files
committed
Add TestRunner
1 parent cffed84 commit 4c2873c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.typicode.jsonplaceholder;
2+
3+
import io.cucumber.junit.Cucumber;
4+
import io.cucumber.junit.CucumberOptions;
5+
import org.junit.runner.RunWith;
6+
7+
@RunWith(Cucumber.class)
8+
@CucumberOptions(
9+
features = "src/test/java/com/typicode/jsonplaceholder/features",
10+
glue = "com.typicode.jsonplaceholder.steps",
11+
tags = "not @skip",
12+
plugin = {"pretty", "html:target/cucumber-report.html"},
13+
publish = true
14+
)
15+
16+
public class TestRunner {
17+
}

0 commit comments

Comments
 (0)