我在执行代码时得到No Feature file found in classpath[]
:
package testRunners;
import org.junit.runner.RunWith;
import cucumber.api.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
@RunWith(Cucumber.class)
@CucumberOptions(features="src\\main\\java\\resources",glue= "src\\main\\java\\stepDefinitions")
public class TestRunner_GoogleHomepage {
}