Skip to content

Instantly share code, notes, and snippets.

@robertbasic
Created January 26, 2015 14:03
Show Gist options
  • Save robertbasic/efc8ccd9b7bedb53340e to your computer and use it in GitHub Desktop.
Save robertbasic/efc8ccd9b7bedb53340e to your computer and use it in GitHub Desktop.
<?php
$senderMock = m::mock('Sender');
$senderMock->shouldReceive('doSend')
->once()
->ordered()
->with(1)
->andReturn(false);
$senderMock->shouldReceive('doSend')
->once()
->ordered()
->with(2)
->andThrow(Exception);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment