0

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 中做到这一点吗?

4

1 回答 1

0

如果任何人感兴趣的课程应声明为:

@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(0) // important to set index explicitly
  public String externalSoftwareVersion;
  
}

@RunWith(Parameterized::class)
class MyTestClass : MyBaseIntegrationTestCase() {
  @Parameterized.Parameter(1) // important to set index explicitly
  var myType: ParameterType
  companion object {
    @Parameterized.Parameters(name = "with {1} on version {0}")
    @JvmStatic
    fun allTypes(): Collection<Array<Any>> = ... //cartesian product should be here
}
于 2021-05-11T10:20:16.900 回答