有人遇到这个错误
初始化错误(junit.framework.TestSuite):测试类只能有一个构造函数
用例。
我在一个测试套件中有 2 个测试脚本。如果我动态创建 TestSuite 然后添加 2 个 testScripts 并调用它
Result result = JUnitCore.runClasses(clazz);
其中 clazz 是 TestSuite 类。
但是,如果我在每 2 个 TestScript 上调用 JUnitCore.runClasses 就没有问题。
我使用了 JUnit3。
我对这个 JUnit 错误有类似的问题- IllegalArgumentException:Test class can only have one constructor,但我的涉及动态创建测试套件类。原因是有一个用例我可以在测试套件中包含 1 个测试脚本,或者我可以在测试套件中包含 2 个测试脚本。
更新代码:
public class ScriptTest1 extends TestCase {
private ScriptTest1() { }
public void testMethod1() {
Assert.assertEquals(true, true);
}
}
public class ScriptTest2 extends TestCase {
private ScriptTest2() { }
public void testMethod2() {
Assert.assertEquals(true, true);
}
}
然后在另一个班级
File file = new File("file to ScriptTest.class");
Class<?> clazz = Class.forName(className, true, Thread.currentThread().getContextClassLoader());
//construct a new test suite
TestSuite ts = new TestSuite("Sample Test Suite with only ScriptTest1");
ts.addTestSuite((Class<? extends TestCase>) clazz);
Result result = JUnitCore.runClasses(ts.getClass());
HashSet<String> failureMethod = new HashSet<String>();
for (Failure failure : result.getFailures()) {
System.out.println("Failure: " + failure.toString());
}
失败会输出:initializationError(junit.framework.TestSuite): Test class can only have one constructor 但是如果我直接这样做,它会运行良好。
File file = new File("file to ScriptTest.class");
Class<?> clazz = Class.forName(className, true, Thread.currentThread().getContextClassLoader());
Result result = JUnitCore.runClasses(clazz);
我在 JUnit4 中创建了测试类,并且我运行我的主程序也依赖于 JUnit4。