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插件)
为什么?