TestNG 支持原生依赖注入。它允许在方法中声明附加参数。在运行时,TestNG 会自动使用正确的值填充这些参数。以下是 TestNG 中一些原生依赖项的列表:ITestContext、XmlTestMethod、ITestResult。您可以使用这些依赖项来获取 TestNG 中测试的执行状态。通常,@AfterMethod 支持所有这些原生依赖项,测试状态可以是成功、失败或跳过。TestNG 支持以下可以通过在正确位置调用函数来检索的测试状态:org.testng.ITestResult public static final int FAILURE = 2; public static final int SKIP = 3; public static final int STARTED = 16; public static final int SUCCESS = 1; public static final int SUCCESS_PERCENTAGE_FAILURE = 4; 在这篇文章中,… 阅读更多