MyBaseIntegrationTestCase
是一个类,它是大约 150 个测试类的父类。现在,我想MyBaseIntegrationTestCase
参数化(参数是外部软件的版本)
所以,我把它改成类似
@RunWith(Parameterized.class)
public abstract class MyBaseIntegrationTestCase extends MyBaseTestCase{
@Parameterized.Parameters(name = "with ExternalSoftware-v{0}")
public static List<String[]> allVersions() {
return Arrays.asList( ...);
}
@Parameterized.Parameter
public String externalSoftwareVersion;
}
的所有子代都MyBaseIntegrationTestCase
被参数化并成功运行,除了MyTestClass
, 声明为
@RunWith(Parameterized::class)
class MyTestClass(override var myType: ParameterType) : MyBaseIntegrationTestCase() {
companion object {
@Parameterized.Parameters(name = "with {0}")
@JvmStatic
fun allTypes(): Collection<Array<ParameterType>> = ...
}
它失败了
java.lang.Exception:测试类应该只有一个公共零参数构造函数
我想让 MyBaseIntegrationTestCase 的所有子项按照父类中的定义运行参数化,并使 MyTestClass 在 allType 和 allVersions 的笛卡尔积上参数化
MyTestClass
不扩展是不可能的MyBaseIntegrationTestCase
,这将需要大量的东西来复制粘贴。
你能建议任何想法如何在 JUnit4 中做到这一点吗?