- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用@Mock
注释模拟一个对象
@Mock
Customer customer;
但是@Mock
注释显示警告
The type MockitoAnnotations.Mock is deprecated
我的测试用例失败了
最佳答案
使用
MockitoAnnotations.openMocks(this);
关于java - MockitoAnnotations.Mock 类型已弃用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33076530/
我正在使用@Mock注释模拟一个对象 @Mock Customer customer; 但是@Mock注释显示警告 The type MockitoAnnotations.Mock is deprec
无论我是否使用,我的测试似乎都通过了 @BeforeEach void initMocks() { MockitoAnnotations.initMocks(this); } 或者不是,我不明
@RunWith(MockitoJUnitRunner.class) public class TestMail{ @Autowired(required = true) Som
我在仪器测试中使用 @Mock 注释时遇到问题。 这是我的 gradle 依赖项: androidTestCompile 'org.mockito:mockito-core:1.10.19' andr
在编写新的 jUnit4 测试时,我想知道是使用 @RunWith(MockitoJUnitRunner.class) 还是 MockitoAnnotations.initMocks(this)。 我
尝试在我的 AndroidTestCase 中使用 mockito。我将依赖项添加到 build.gradle 中: final DEXMAKER_VERSION = '1.2' dependenci
当我尝试为 Controller 创建 junit 时,出现以下错误: java.lang.NoClassDefFoundError: org/mockito/MockitoAnnotations$M
所以我在我的 Spring boot Gradle 项目中遇到了这个错误: 'java.lang.AutoCloseable org.mockito.MockitoAnnotations.openMo
我是一名优秀的程序员,十分优秀!