当前位置:  开发笔记 > 编程语言 > 正文

JUnit 3.x中的参数化测试用例类

如何解决《JUnit3.x中的参数化测试用例类》经验,为你挑选了0个好方法。

我有一个JUnit 3.x TestCase,我希望能够对其进行参数化。我想对整个参数TestCase(包括灯具)进行参数化。但是,该TestSuite.addTestSuite()方法不允许传递TestCase对象,只能传递一个类:

   TestSuite suite = new TestSuite("suite");
   suite.addTestSuite(MyTestCase.class);

我希望能够将参数(字符串)传递给在测试运行时创建的MyTestCase实例。现在,我必须为每个参数值使用一个单独的类。

我尝试将其传递给任意子类:

   MyTestCase testCase = new MyTestCase() {
       String getOption() {
           return "some value";
       }
   }

   suite.addTestSuite(testCase.getClass());

但是,这失败并带有断言:

   ... MyTestSuite$1 has no public constructor TestCase(String name) or TestCase()`

有任何想法吗?我是否以错误的方式解决问题?

推荐阅读
pan2502851807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有