Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是使用 Mockito 的新手,我正在运行在我们的 GWT 项目中编写的示例测试类。
在某些地方,为了获得我们使用的 Mock,Mockito.mock(SecurityDao.class) 但在同一测试类的其他地方,我们使用“new”关键字实例化其他类。
Mockito.mock(SecurityDao.class)
我认为为了模拟一个类,我需要将接口作为参数传递给 Mockito.mock ,如果我的类没有实现接口,那么我需要使用“new”关键字来实例化该类。
这是正确的吗?我什么时候应该真正使用 Mockito.mock?
谢谢
Mockito#mock()在创建测试对象以外的对象时始终使用。Mockito 可以为接口和类创建模拟。
Mockito#mock()