我的maven项目具有一个包含一些“常见”空手道特征文件的依赖项。
我实现了一个类Runner来运行这些测试。
这是我的TestRunner类
import com.intuit.karate.junit4.Karate;
import cucumber.api.CucumberOptions;
import org.junit.runner.RunWith;
@RunWith(Karate.class)
@CucumberOptions(features = {"classpath:/es/mypath/features"}, tags = {"~@ignore"})
public class QaTestRunner {
}
当我使用自己的IDE(intelliJ IDEA)运行该类时,一切正常。
问题是,当我尝试使用de mvn test -Dtest=QaTestRunner
运行任何测试。
有人知道功能文件处于依赖状态时是否需要进行一些配置修改吗?