我想使用我提供的测试名称而不是方法名称。
这是我命名测试的地方。
@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方法可以在测试开始时读取测试名称。
谢谢