我创建了一些黄瓜测试步骤和一个小黄瓜测试用例,我使用 JUnit 运行,如下所示:
@RunWith(Cucumber.class)
public class FuelCarTest {
//executs cucumber steps in the class FuelCarSteps
}
Cucumber 功能文件现在自动从类路径位置加载,src/main/resources/<package-name>/*.feature
我想知道如何告诉黄瓜我的功能文件的位置,因为我需要它从类路径之外的位置(例如数据//)加载它们。