诱惑报告(http://allure.qatools.ru/)是否能够默认显示测试名称而不进行更改?
当前行为:它按单词分隔测试名称,并为测试名称中的每个单词设置大写字母。
我正在使用TestNG
测试框架。
例子:
import org.testng.annotations.Test;
@Test
public void testExample() {
//do smth
}
将在前端显示“测试示例”。
import org.testng.annotations.Test;
import ru.yandex.qatools.allure.annotations.Title;
@Title('testExample')
@Test
public void testExample() {
//do smth
}
将在前端显示“testExample”。
我不想在每个测试的@Title 注释中重复测试名称。如何避免在每个测试上面写@Title注解?