我正在Mockery
使用Laravel 5.6
. 目前我需要检查第 100 次通话中传递了什么。
这是我要执行的示例检查。
Mockery::mock(ShopifySDK::class)
->shouldReceive('get')
->with(['key' => 'val']) //I need to check passed array on the 100-th call of the "get" method
->getMock();
有可能做到吗?如果是,那该怎么做?