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.
我们需要在运行时动态设置测试用例名称。我正在使用 WebTestFactory 执行具有不同参数的相同测试用例,但我们需要为每次运行提供不同的测试用例名称。
请指教。
TestNG 有一个接口org.testng.ITest。通过实现来实现这个接口
org.testng.ITest
public String getTestName();
在您的测试方法中,设置参数以便getTestName()可以返回一个有意义的名称。
getTestName()