doThrow() doAnswer() doNothing() 和 doReturn() 在 mockito 中的用法

Usages of doThrow() doAnswer() doNothing() and doReturn() in mockito(doThrow() doAnswer() doNothing() 和 doReturn() 在 mockito 中的用法)
本文介绍了doThrow() doAnswer() doNothing() 和 doReturn() 在 mockito 中的用法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我在学习mockito,我从链接.

I was learning mockito and I understood the basic usages of the above mentioned functions from the link.

但是我想知道它是否可以用于任何其他情况?

But I would like to know whether it can be used for any other cases?

推荐答案

doThrow : 主要用于在模拟对象中调用方法时抛出异常.

doThrow : Basically used when you want to throw an exception when a method is being called within a mock object.

public void validateEntity(final Object object){}
Mockito.doThrow(IllegalArgumentException.class)
.when(validationService).validateEntity(Matchers.any(AnyObjectClass.class));

doReturn : 当你想在方法执行时返回一个返回值时使用.

doReturn : Used when you want to send back a return value when a method is executed.

public Socket getCosmosSocket() throws IOException {}
Mockito.doReturn(cosmosSocket).when(cosmosServiceImpl).getCosmosSocket();

doAnswer:有时您需要对传递给方法的参数执行一些操作,例如,添加一些值、进行一些计算甚至修改它们 doAnswer 给您答案

doAnswer: Sometimes you need to do some actions with the arguments that are passed to the method, for example, add some values, make some calculations or even modify them doAnswer gives you the Answer<?> interface that being executed in the moment that method is called, this interface allows you to interact with the parameters via the InvocationOnMock argument. Also, the return value of answer method will be the return value of the mocked method.

public ReturnValueObject quickChange(Object1 object);
Mockito.doAnswer(new Answer<ReturnValueObject>() {

        @Override
        public ReturnValueObject answer(final InvocationOnMock invocation) throws Throwable {

            final Object1 originalArgument = (invocation.getArguments())[0];
            final ReturnValueObject returnedValue = new ReturnValueObject();
            returnedValue.setCost(new Cost());

            return returnedValue ;
        }
}).when(priceChangeRequestService).quickCharge(Matchers.any(Object1.class));

doNothing:(来自 文档)使用 doNothing() 将 void 方法设置为不执行任何操作.请注意,模拟上的 void 方法默认情况下什么都不做!但是,doNothing() 派上用场的情况很少见:

doNothing: (From documentation) Use doNothing() for setting void methods to do nothing. Beware that void methods on mocks do nothing by default! However, there are rare situations when doNothing() comes handy:

  • 对 void 方法的连续调用存根:

  • Stubbing consecutive calls on a void method:

doNothing().
doThrow(new RuntimeException())
.when(mock).someVoidMethod();

//does nothing the first time:
mock.someVoidMethod();

//throws RuntimeException the next time:
mock.someVoidMethod();

  • 当你窥探真实的对象并且你想让 void 方法什么都不做时:

  • When you spy real objects and you want the void method to do nothing:

    List list = new LinkedList();
    List spy = spy(list);
    
    //let's make clear() do nothing
    doNothing().when(spy).clear();
    
    spy.add("one");
    
    //clear() does nothing, so the list still contains "one"
    spy.clear();
    

  • 这篇关于doThrow() doAnswer() doNothing() 和 doReturn() 在 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 - 获取键盘按键)