使用从一种方法捕获的参数为模拟实例中的另一种方法生成返回值

时间:2019-06-21 14:26:54

标签: kotlin mockito mockito-kotlin

有人可以帮助实现以下目标吗?我正在使用Mockito-Kotlin编写我的单元测试。

    mock<MyClass> {

      on { someMethodThatReturnsVoid(any<ParamClass>)} do { //capture the param value}

      on { someOtherThatReturnsB() } do { // use the captured param instance 
                                          //to construct B instance to return }

    }

0 个答案:

没有答案