Mockito-验证方法有什么作用? [英] Mockito - what does verify method do?

查看:210
本文介绍了Mockito-验证方法有什么作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有以下伪代码,例如测试代码:

Let's say i have the following psuedo like test code:

 //Let's import Mockito statically so that the code looks clearer
 import static org.mockito.Mockito.*;

 //mock creation
 List mockedList = mock(List.class);

 //using mock object
 mockedList.add("one");
 mockedList.clear();

 //what do these two verify methods do ?
 verify(mockedList).add("one");
 verify(mockedList).clear();

我一直在显示测试通过,但是我不知道验证是什么意思?它到底在验证什么?我知道我模拟了添加和清除的调用,但是这两个验证调用有什么作用?

I keep showing the test passed but i dont know what the verify means ? what is it verifying exactly ? I understand that i mocked a call to add and clear but what does the two verify calls do ?

推荐答案

Mockito.verify(MockedObject).someMethodOnTheObject(someParametersToTheMethod); 验证您在模拟对象上调用的方法是否确实被调用.如果未调用它们,或使用错误的参数调用它们,或调用了错误的次数,它们将无法通过您的测试.

Mockito.verify(MockedObject).someMethodOnTheObject(someParametersToTheMethod); verifies that the methods you called on your mocked object are indeed called. If they weren't called, or called with the wrong parameters, or called the wrong number of times, they would fail your test.

这篇关于Mockito-验证方法有什么作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆