我正在尝试将@Test的testName属性用于我的ReportNG html输出。

不幸的是它说:

/**
* The name of the test  this test class should be placed in.  This
* attribute is ignore if @Test is not at the class level.
*/
public String testName() default "";


因此,testName始终为空。

需要更改什么以在方法级别不忽略此属性?

如果要知道这一点,我正在使用TestNG .xml套件来运行测试。

高兴任何提示,欢呼!

最佳答案

由于测试名称适用于整个类,因此在方法级别进行指定是没有意义的。

09-25 23:01