如何模拟方法的行为

时间:2017-07-31 17:57:34

标签: java unit-testing testing mocking mockito

我有以下情景

class A {   
    Response response = someFunction()
    response.doStuff()
}

class Response {    
    fun doStuff() {
        //check if response status is OK         
        //some stuff, not to be executed when in test
    }
} 

我需要检查响应是否正常但不执行其余逻辑。 我希望实现像 -

这样的东西
when(response.doStuff())Then(assert response is ok)

你能告诉我怎么做吗?

0 个答案:

没有答案