gpt4 book ai didi

groovy - 无法在 groovy 方法上添加多个注释?

转载 作者:行者123 更新时间:2023-12-02 06:36:56 25 4
gpt4 key购买 nike

 when I add two annotations to a method like this       

@Parameters({"userName",""})
@Test
public void replyMaster()
{

}

出现此错误

 Multiple markers at this line
- Groovy:unexpected token: @ @ line 40, column 2.
- Duplicate field ReplyTest.@
- Groovy:The field '@' is declared multiple times.

我的配置:jdk 1.7,testng 6.8,groovy 2.0(安装了groovy eclipse插件)

为什么?

最佳答案

如果这是 Groovy 文件,则

@Parameters({"userName",""})

应该是:

@Parameters(["userName",""])

或者

@Parameters(["userName",""] as Object[])

不确定,我没有使用过 TestNG。但是使用 Groovy 绝对可以在每个节点上有多个注释,但这不是 groovy 处理列表或数组的方式

关于groovy - 无法在 groovy 方法上添加多个注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14619948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com