I need to test how some code I wrote will behave when it calls a method on another class multiple times, where one of the calls will cause an exception to be thrown.
I am using Mockery to mock the class that may throw an exception.
So in my case, the method will be called three times and I need it throw an exception on the second time.
This is example of my intention but it doesn't work.
$mock = \Mockery::mock();
$mock->shouldReceive('fetch')
->andReturnUsing(
function () {return true;},
function () use ($e) {throw new \Exception();},
function () {return false;}
);
I was given the impression the above might work from the response in Asserting that mock throws exception · Issue #308 · mockery/mockery.
However, in practice, throwing an exception this way causes Mockery to catch the exception and throw its own BadMethodCall
exception.