在魅力中添加参数以测试标题

时间:2015-09-18 13:21:19

标签: testing junit allure

我使用Allure和jUnit。在参数化测试中,我在标题中看到参数 enter image description here

当我想通过@Title注释提供自定义标题时,不会显示这些参数。我试图将参数指定为@Title("Test {0}"),但它也不起作用。

有没有办法在测试用例中拥有自定义标题和参数?

1 个答案:

答案 0 :(得分:1)

如何将name设置为@Parameterized注释?

@Parameterized.Parameters(name = "My cool test {1} {2} {3}")

UPD: Allure按原样获取 @Title 注释值,既不支持 {method} 也不支持 {i} < / strong>表示法,因为它是在没有方面的情况下处理的。 Java反过来不允许在注释中使用动态表达式。