Skip to content

Instantly share code, notes, and snippets.

@Shubh-Srivastava-5911
Created June 1, 2025 04:59
Show Gist options
  • Save Shubh-Srivastava-5911/9d63cbaa5eb925f8e24a410193175195 to your computer and use it in GitHub Desktop.
Save Shubh-Srivastava-5911/9d63cbaa5eb925f8e24a410193175195 to your computer and use it in GitHub Desktop.
package runner;
import org.junit.runner.RunWith;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/resources/features",
glue = "stepdefinitions"
)
public class TestRunner {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment