Skip to content

Instantly share code, notes, and snippets.

@MEGApixel23
Last active May 7, 2017 15:50
Show Gist options
  • Save MEGApixel23/576237544b1c82e17d7255abbb47f6a6 to your computer and use it in GitHub Desktop.
Save MEGApixel23/576237544b1c82e17d7255abbb47f6a6 to your computer and use it in GitHub Desktop.
Example of a partial class mock (only needed method will be mocked, others stays unchanged).
<?php
$mock = Mockery::mock(ClassYouWantToMock::class)->makePartial();
$mock->shouldReceive('methodNameToMock')->andReturn($returnVariable);
$this->app->instance(ClassYouWantToMock::class, $mock);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment