如何对 spring bean 定义进行单元测试?
我通过@Bean定义了几个spring bean。
@Bean
void SomeClass someClass() {
return new SomeClass();
}
但单元测试并未涵盖这些内容,因为我使用 @Mock 来模拟类,并且 bean 不会在单元测试中实例化。
现在测试覆盖率失败了,因为 spring bean 定义行没有被覆盖,有什么方法可以修复它吗?
我们使用 Jacoco 覆盖范围。
注意:我没有使用@Configuration,而是将类传递给应用程序上下文
I have defined several spring beans via @Bean
.
@Bean
void SomeClass someClass() {
return new SomeClass();
}
But these are not covered by unit tests as I use @Mock
to mock the classes, and beans are not instantiated in unit tests.
Now test coverage is failing because spring bean definition lines are not covered, is there any way to fix it ?
We use Jacoco coverage.
Note: I am not using @Configuration, rather passing the class to Application context
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@Configuration
文件通常按规则排除在代码覆盖测试之外。使用 @SpringBootTest 运行应用程序(如果您使用的是 Boot)也可能会导致这些应用程序被标记为已执行。@Configuration
files are normally excluded from code-coverage tests by rule. Running the application with@SpringBootTest
(if you're using Boot) may also cause these to be marked as executed.