在我的跑步者类中将标签作为黄瓜选项提供时出现“java.lang.String”错误的非法初始化程序

Posted

技术标签:

【中文标题】在我的跑步者类中将标签作为黄瓜选项提供时出现“java.lang.String”错误的非法初始化程序【英文标题】:Illegal initializer for 'java.lang.String' error while supplying tags as cucumber options in my runner class 【发布时间】:2021-01-02 04:54:47 【问题描述】:

我收到编译错误 - 'java.lang.String' 的初始化程序非法,同时在我的跑步者类中提供标签作为黄瓜选项。这曾经在 info.cukes 上运行良好,但在升级到 io.cucumber 后无法正常运行。

这是我的跑步者课-

import io.cucumber.testng.AbstractTestNGCucumberTests;
import io.cucumber.testng.CucumberOptions;

@CucumberOptions(
        features = "target/test-classes",
        monochrome = true,
        plugin ="json:target/cucumber-report.json", "html:target/cucumber-reports.html",
        tags = "@Smoke", "@Sanity","@Reg" )

public abstract class BaseRunner extends AbstractTestNGCucumberTests 

在下面附上相同的 -

【问题讨论】:

【参考方案1】:

替换为tags="@Smoke or @Sanity or @Reg"tags="@Smoke and @Sanity and @Reg",随你的便。

【讨论】:

【参考方案2】:

在 io.cucumber 中,标签应不带 '' 于是就变成了,

@CucumberOptions(
    features = "target/test-classes",
    monochrome = true,
    plugin ="json:target/cucumber-report.json", "html:target/cucumber-reports.html",
    tags = "@Smoke", "@Sanity","@Reg" )

它应该可以工作。

【讨论】:

以上是关于在我的跑步者类中将标签作为黄瓜选项提供时出现“java.lang.String”错误的非法初始化程序的主要内容,如果未能解决你的问题,请参考以下文章

带有标签的 ActionBar - 切换标签时出现奇怪的问题

在 SSIS 中将数据写入 Excel 文件时出现无法解释的错误

以另一种颜色更改选择选项时出现问题[重复]

尝试为标签控件赋值时出现跨线程操作错误[重复]

如何在 ext JS/Sencha 中隐藏选项卡面板

使用选项卡控制器时出现奇怪的滚动行为 - iOS