为范围报告者使用测试名称而不是方法名称

时间:2019-03-12 14:42:46

标签: java testng appium-android extentreports

我想使用我提供的测试名称而不是方法名称。

这是我命名测试的地方。

@Test(testName = "The test name is test", retryAnalyzer = RetryAnalyzer.class)

这是获取测试名称的之前方法

 @BeforeMethod
public synchronized void beforeMethod(Method method) {
    ExtentTest child = parentTest.get().createNode(method.getName());
    test.set(child);

我希望before方法可以在测试开始时读取测试名称。

谢谢

0 个答案:

没有答案