在Groovy中使用Spock模拟调用方法

时间:2020-01-23 10:24:24

标签: groovy spock

我班上有一段代码。我需要通过模拟一些对象来使用groovy进行测试。但是,无论如何它都会进入方法

我的课有以下代码

BBRequest bbRequest = getUpdatedRequst(payload);

getUpdatedRequest是私有方法之一

现在要进入groovy类,我正在尝试以

嘲笑这一类
BBRequest newRequest= BBRequest .builder().build()

1 * getUpdatedRequst(*_) >> newRequest --> Here I want to compile the above line of class and gets assigned with the newRequest

我该如何完成

0 个答案:

没有答案