15 lines
346 B
Java
15 lines
346 B
Java
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 {
|
|
}
|