查找 Mockito 构造的导入静态语句

Finding import static statements for Mockito constructs(查找 Mockito 构造的导入静态语句)
本文介绍了查找 Mockito 构造的导入静态语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正试图冲破我和 Mockito 之间的砖墙.试图为 Mockito 的东西获取正确的 import static 语句时,我已经把头发扯掉了.你会认为有人会扔一张桌子说 anyInt() 来自 org.mockito.Matcherswhen() 来自org.mockito.Mockito 等等,不过这对新手来说太有帮助了,不是吗?

I'm trying to crash through the brick wall between me and Mockito. I've torn my hair out over trying to get correct import static statements for Mockito stuff. You'd think someone would just throw up a table saying that anyInt() comes from org.mockito.Matchers and when() comes from org.mockito.Mockito, etc., but that would be too helpful to newcomers, no?

这种事情,尤其是与无数以星号结尾的导入语句混合时,并不总是很有帮助:

This sort of thing, especially when mixed in with myriad more import statements ending in asterisks, isn't always very helpful:

import static org.junit.Assert.*;
import static org.mockito.Mockito.*;

是的,我知道并一直在尝试使用 Eclipse Window -> Preferences-> Java -> Editor-> Content Assist -> Favorites 机制.它有帮助,但不会一针见血.

Yes, I know about and have been trying to use the Eclipse Window -> Preferences-> Java -> Editor-> Content Assist -> Favorites mechanism. It helps, but it doesn't hit the nail on the head.

对此问题的任何答案将不胜感激.

Any answers to this question would be appreciated.

非常感谢,拉斯

推荐答案

问题是静态导入从 Hamcrest 和 Mockito 名称相似,但分别返回 Matchers 和实数值.

The problem is that static imports from Hamcrest and Mockito have similar names, but return Matchers and real values, respectively.

一种解决方法是简单地复制 Hamcrest 和/或 Mockito 类并删除/重命名静态函数,以便它们更容易记住并且更少出现在自动完成中.我就是这么做的.

One work-around is to simply copy the Hamcrest and/or Mockito classes and delete/rename the static functions so they are easier to remember and less show up in the auto complete. That's what I did.

另外,在使用 mocks 时,我尽量避免使用 assertThat 以支持其他其他 assertionsverify,例如

Also, when using mocks, I try to avoid assertThat in favor other other assertions and verify, e.g.

assertEquals(1, 1);
verify(someMock).someMethod(eq(1));

而不是

assertThat(1, equalTo(1));
verify(someMock).someMethod(eq(1));

如果您从 Eclipse 的收藏夹中删除类,并输入长名称,例如org.hamcrest.Matchers.equalTo 并按 CTRL+SHIFT+M 来添加导入",然后自动完成只会显示 Hamcrest 匹配器,而不显示任何 Mockito 匹配器.只要您不混合匹配器,您就可以通过其他方式执行此操作.

If you remove the classes from your Favorites in Eclipse, and type out the long name e.g. org.hamcrest.Matchers.equalTo and do CTRL+SHIFT+M to 'Add Import' then autocomplete will only show you Hamcrest matchers, not any Mockito matchers. And you can do this the other way so long as you don't mix matchers.

这篇关于查找 Mockito 构造的导入静态语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Sending a keyboard event from java to any application (on-screen-keyboard)(将键盘事件从 java 发送到任何应用程序(屏幕键盘))
How to make JComboBox selected item not changed when scrolling through its popuplist using keyboard(使用键盘滚动其弹出列表时如何使 JComboBox 所选项目不更改)
Capturing keystrokes without focus(在没有焦点的情况下捕获击键)
How can I position a layout right above the android on-screen keyboard?(如何将布局放置在 android 屏幕键盘的正上方?)
How to check for key being held down on startup in Java(如何检查在Java中启动时按住的键)
Android - Get keyboard key press(Android - 获取键盘按键)