在Extent Report中显示测试名称而不是方法名称,可以通过使用TestNG的@Test注解的description属性来实现。
@Test(description = "这是一个测试名称")
public void testMethod() {
// 测试代码
}
ExtentReports extent = new ExtentReports();
ExtentTest test = extent.createTest(testMethod.getClass().getSimpleName(), testMethod.getMethod().getDescription());
这样,Extent Report将会显示你指定的测试名称而不是方法名称。
需要注意的是,以上代码是使用Extent Report的Java API来实现的,如果你使用其他语言或其他测试报告工具,具体的实现方式可能会有所不同。
领取专属 10元无门槛券
手把手带您无忧上云