我正在尝试将 @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 套件来运行我的测试。
很高兴任何提示,干杯!