我想为 TestNG xml 测试结果实现一个自定义报告器。我目前使用 JUnitReportReporter。我的结果 xml 目前看起来像这样:
testcase name="testSearchForProductAndVerifyFirstFoundItem" time="55.516" classname="com.jpard.jaf.test.SearchForAnItemTests"
我只是想用 @Test(description = "Test that the first item in the results is the one searched")中的测试描述替换测试用例名称。我怎样才能以最简单的方式做到这一点。非常感谢!