使用 Mockito 模拟 hibernate 的 SessionFactory 时出现问题

发布于 2024-09-26 07:24:57 字数 382 浏览 3 评论 0原文

知道为什么下面的模拟代码不起作用吗?

org.hibernate.SessionFactory sessionFactory = Mockito.mock(SessionFactory.class);
org.hibernate.Session session = Mockito.mock(Session.class);
Mockito.when(sessionFactory.getCurrentSession()).thenReturn(session);

thenReturn 语句无法编译。 “OngoingStubbing 类型中的方法 thenReturn(Session) 不适用于参数 (Session)” 但是,为什么不适用呢?我想我已经正确地计算出了进口。

Any idea why the following mocking code does not work?

org.hibernate.SessionFactory sessionFactory = Mockito.mock(SessionFactory.class);
org.hibernate.Session session = Mockito.mock(Session.class);
Mockito.when(sessionFactory.getCurrentSession()).thenReturn(session);

The thenReturn statement does not compile.
"The method thenReturn(Session) in the type OngoingStubbing is not applicable for the arguments (Session)"
But, why is it not applicable? I think I have the imports figured out correctly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

昇り龍 2024-10-03 07:24:57

这是因为 SessionFactory.getCurrentSession() 实际返回的类型是 org.hibernate.classic.Session,它是 org.hibernate 的子类型。会话。您需要将模拟更改为正确的类型:

org.hibernate.classic.Session session = Mockito.mock(org.hibernate.classic.Session.class);

This is because the type actually returned by SessionFactory.getCurrentSession() is org.hibernate.classic.Session, which is a sub-type of org.hibernate.Session. You'll need to change your mock to the correct type:

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