1

我正在尝试将 @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 套件来运行我的测试。

很高兴任何提示,干杯!

4

1 回答 1

2

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

于 2012-11-08T16:06:22.557 回答