gpt4 book ai didi

java - TestNG:如何从DataProvider获取Factory即将创建的类

转载 作者:行者123 更新时间:2023-12-01 09:31:04 25 4
gpt4 key购买 nike

我有一个在构造函数中带有 @Factory(dataProvider = "dp") 的类。如何在数据提供程序中获取该类?

class Test {

@Factory(dataProvider = "dp")
public Test(int i) {
//... some code
}

@DataProvider
public static Object[][] dp(ITestContext context, Method method) {
// need to get currently created class by factory
// method is null here
// not found any way to obtain this class from test context
}

}

在这个示例中,我可以使用硬编码的类名,但在现实世界中,数据提供程序位于父类中(或只是单独的类)

最佳答案

只需执行以下操作:

class Test {

@Factory(dataProvider = "dp")
public Test(int i) {
//... some code
}

@DataProvider
public static Object[][] dp(ConstructorOrMethod com) {
Class<?> testClass = com.getConstructor().getDeclaringClass();
}

}

关于java - TestNG:如何从DataProvider获取Factory即将创建的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39391569/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com