В Classpath нет функций - PullRequest
0 голосов
/ 10 июля 2019

Я получаю 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 {

}
...