如何获取TestNG方法调用参数

问题描述 投票:0回答:1

我知道可以获取 TestNG 方法的参数,如下所述:https://testng.org/parameters.html

但是,我需要获取 TestNG 方法的参数。 这个可以拿到吗?

为了比较,我可以在 JUnit 中获取测试方法参数,如下所示: https://junit.org/junit5/docs/current/api/org.junit.jupiter.api/org/junit/jupiter/api/extension/ ReflectiveIncationContext.html#getArguments()

感谢您的帮助!

java unit-testing testng testng-dataprovider testng-annotation-test
1个回答
0
投票

哦等等...事实证明,在 TestNG 方法中,参数参数。 所以,

testResult.getParameters()
有效。

对不起我的错误。 我以前使用过 JUnit,对 TestNG 还很陌生。 我对 JUnit 和 TestNG 对参数和参数的不同定义感到困惑。

© www.soinside.com 2019 - 2024. All rights reserved.