Created
June 1, 2025 04:59
-
-
Save Shubh-Srivastava-5911/9d63cbaa5eb925f8e24a410193175195 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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