As far as I know, you can't do that, I'd just:
$this->productMock
->shouldReceive("findBySku")
->with(0)
->andReturn(true);
$this->productMock
->shouldReceive("findBySku")
->with(1)
->andReturn(true);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community