Skip to content

Instantly share code, notes, and snippets.

@MacDada
Created June 11, 2014 09:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MacDada/6d8ce489297bb5edb620 to your computer and use it in GitHub Desktop.
Save MacDada/6d8ce489297bb5edb620 to your computer and use it in GitHub Desktop.
<?php
// tak jest
$this->add('')->shouldReturn(0);
$this->shouldThrow('Exception')->during('add', [null]);
// a mogłoby być tak
$this->add('')->shouldReturn(0);
$this->add(null)->shouldThrow('Exception');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment