Slide 96
Slide 96 text
@maccath | Katy Ereira | #LaravelLive
tests/Unit/BrexitTest.php
public function testBrexit()
{
$mockBrexitUtil = Mockery::mock(BrexitUtility::class)
->shouldIgnoreMissing();
$result = brexit($remoaner = false, $mockBrexitUtil); // Use it.
$this->assertNotEquals('People’s vote!', $result); // Success!
}
Exiting