为了账号安全,请及时绑定邮箱和手机立即绑定

黄瓜选项(命令行)不再适用于较新版本的黄瓜(io.cucumber)?

黄瓜选项(命令行)不再适用于较新版本的黄瓜(io.cucumber)?

素胚勾勒不出你 2023-08-04 15:02:58
目前,当尝试通过命令行窗口运行测试时,以下命令可以工作,但是自从从 info.cakes 更新到 io.cucumber 后,它似乎不再工作了?mvn test -Dcucumber.options="--tags @login"异常消息:Sep 17, 2019 5:18:37 PM cucumber.runtime.FeaturePathFeatureSupplier getWARNING: No features found at classpath:runners但是,直接从运行程序类运行测试是可行的:package runners;import io.cucumber.junit.CucumberOptions;import io.cucumber.junit.Cucumber;import io.cucumber.testng.AbstractTestNGCucumberTests;import org.junit.runner.RunWith;@RunWith(Cucumber.class)@CucumberOptions(features = { "classpath:features" }, glue = {        "stepDefinitions"}, monochrome = true, tags = {"@login"}, dryRun = false,        plugin = { "pretty", "html:target/cucumber", "json:target/cucumber.json"})    public class MainRunner extends AbstractTestNGCucumberTests {}黄瓜版本:<cucumber.version>4.7.2</cucumber.version>
查看完整描述

1 回答

?
HUWWW

TA贡献1874条经验 获得超12个赞

import io.cucumber.junit.CucumberOptions;

import io.cucumber.junit.Cucumber;

import io.cucumber.testng.AbstractTestNGCucumberTests;

import org.junit.runner.RunWith;

您正在混合 JUnit 和 TestNG。您应该在单个类中使用 JUnit 或 TestNG。不是都。


查看完整回答
反对 回复 2023-08-04
  • 1 回答
  • 0 关注
  • 133 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信