Spring错误——Spring 单元测试——Test class should have exactly one public constructor
Posted 话·醉月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring错误——Spring 单元测试——Test class should have exactly one public constructor相关的知识,希望对你有一定的参考价值。
- 背景:Spring 构建单元测试
- 错误
java.lang.Exception: Test class should have exactly one public constructor at org.junit.runners.BlockJUnit4ClassRunner.validateOnlyOneConstructor(BlockJUnit4ClassRunner.java:131) at org.junit.runners.BlockJUnit4ClassRunner.validateConstructor(BlockJUnit4ClassRunner.java:120) at org.junit.runners.BlockJUnit4ClassRunner.collectInitializationErrors(BlockJUnit4ClassRunner.java:101) at org.junit.runners.ParentRunner.validate(ParentRunner.java:344) at org.junit.runners.ParentRunner.<init>(ParentRunner.java:74) at org.junit.runners.BlockJUnit4ClassRunner.<init>(BlockJUnit4ClassRunner.java:55) at org.junit.internal.builders.JUnit4Builder.runnerForClass(JUnit4Builder.java:13)
- 错误原因:在Junit测试类中必须声明一个public 构造函数。我的测试类没有声明public,默认为default 。
public class TestBeanScope extends UnitTestBase { TestBeanScope(){ super("classpath*:spring-scope.xml"); } @Test public void TestSingleton(){ for (int i=0;i<3;i++){ BeanScope beanScope = (BeanScope)super.getBean("beanScope"); beanScope.say("test"); } } }
- 解决办法:构建一个公有构造函数即可
public class TestBeanScope extends UnitTestBase { public TestBeanScope(){ super("classpath*:spring-scope.xml"); } @Test public void TestSingleton(){ for (int i=0;i<3;i++){ BeanScope beanScope = (BeanScope)super.getBean("beanScope"); beanScope.say("test"); } } }
- Next
以上是关于Spring错误——Spring 单元测试——Test class should have exactly one public constructor的主要内容,如果未能解决你的问题,请参考以下文章
使用 spring boot 运行单元测试,“没有可运行的方法”错误
Spring boot 1.4 测试:配置错误:发现@BootstrapWith 的多个声明
使用邮递员返回错误请求,但未在单元测试 Spring Boot 中返回
Spring Boot:禁用 Spring Boot 单元测试的安全性 [重复]
Spring Boot 2.1.1:java.lang.IllegalStateException:运行单元测试时无法检索@EnableAutoConfiguration 基本包错误