我创建了一个新注释
@Target(ElementType.METHOD)
public @interface DisplayName {
String value() ;
}
我想用来在范围报告中定义测试用例名称。在测试用例上:
@Test
@DisplayName("testcase title")
public void TestCase_1() throws InterruptedException {...}
在 TestListener 中,我现在设法使用描述字段设置测试用例的标题。
@Override
public void onTestStart(ITestResult iTestResult) {
System.out.println("I am in onTestStart method " + getTestMethodName(iTestResult) + " start");
// Start operation for extentreports.
ExtentTestManager.startTest(iTestResult.getMethod().getDescription(), iTestResult.getMethod().getDescription());
}
我想使用 @DisplayName 注释作为测试用例标题,但我不知道如何将注释值带入 TestListener。
提前致谢!
解决方案__________________在@Kovacic 的大力帮助下__________________解决方案
最后结果:
注释类:
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface DisplayName {
String value();
}
测试监听类:
........
@Override
public void onTestStart(ITestResult iTestResult) {
String valueFromInterface = null;
Method method = iTestResult.getMethod().getConstructorOrMethod().getMethod();
if (method.isAnnotationPresent(DisplayName.class)) {
DisplayName displayName = method.getAnnotation(DisplayName.class);
if (displayName != null) {
valueFromInterface = displayName.value();
}
}
ExtentTestManager.startTest(valueFromInterface, iTestResult.getMethod().getDescription());
}
........