我有以下格式的测试运行器,但在运行junit runner时没有找到任何功能文件。请附上步骤定义和功能文件
的位置屏幕截图 import org.junit.runner.RunWith;
import cucumber.junit.Cucumber;
@RunWith(Cucumber.class)
@Cucumber.Options(
features ={"C:\\Users\\workspace\\Project3\\src\\qa2qe\\Features\\shipping.feature"},
format = {"pretty"},
tags = {"@testscenario1"}
)
public class ShippingTest {
}