如何对 spring bean 定义进行单元测试?

发布于 2025-01-11 18:21:17 字数 302 浏览 0 评论 0原文

我通过@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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

dawn曙光 2025-01-18 18:21:17

@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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文