add new branch for testing
This commit is contained in:
14
src/test/java/com/techprimers/testing/CucumberTest.java
Normal file
14
src/test/java/com/techprimers/testing/CucumberTest.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package com.techprimers.testing;
|
||||
|
||||
import cucumber.api.CucumberOptions;
|
||||
import cucumber.api.junit.Cucumber;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
@RunWith(Cucumber.class)
|
||||
@CucumberOptions(
|
||||
features = "src/test/resources",
|
||||
glue = "com.techprimers.testing",
|
||||
format = {"json:target/cucumber.json"}
|
||||
)
|
||||
public class CucumberTest {
|
||||
}
|
||||
Reference in New Issue
Block a user