Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 Hudson 运行我的 testng 测试。运行大约 2000 个测试(即 2000 个数据集传递给单个测试用例)。在 Hudson 报告中,它显示了测试用例名称和一些失败的数据问题。我想覆盖它,以便它应该显示我需要的名称,而不是整个数据集的相同名称。
谢谢马丹
您可以通过实现 ITest 并覆盖 getTestName 方法来尝试。您可以在类的构造函数上使用基于数据提供者的工厂,该构造函数将设置变量 testname 并且 getTestName 应该在输出中返回您想要的名称。