Mockito - 验证方法有什么作用?

Mockito - what does verify method do?(Mockito - 验证方法有什么作用?)
本文介绍了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();

我一直显示测试通过但我不知道验证是什么意思?它到底在验证什么?我知道我模拟了一个 add 和 clear 调用,但是这两个 verify 调用是做什么的?

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 - 验证方法有什么作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

Android Mocking a Dagger2 injected dependency for a Espresso test(Android 为 Espresso 测试模拟 Dagger2 注入依赖项)
Mock object in Android Unit test with kotlin - any() gives null(使用 kotlin 在 Android 单元测试中模拟对象 - any() 给出 null)
How to mock Context using Mockito?(如何使用 Mockito 模拟上下文?)
How can I use OCMock to verify that a method is never called?(如何使用 OCMock 来验证某个方法从未被调用?)
Unit test Android, getString from resource(单元测试Android,从资源中获取字符串)
Unit Testing in Retrofit for Callback(回调改造中的单元测试)