2

诱惑报告(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注解?

4

1 回答 1

2

您可以在测试用例页面的顶部看到一个方法名称:

测试用例页面顶部

目前无法更改此行为 - 但我们将删除标题生成功能。请参阅相关的 Github 问题 - https://github.com/allure-framework/allure-core/issues/408

于 2015-05-07T11:09:10.833 回答