Skip to content

Instantly share code, notes, and snippets.

@trq
Created January 24, 2017 01:49
Show Gist options
  • Save trq/ae2c4775cf7ecc35346f8f1ee9e4de13 to your computer and use it in GitHub Desktop.
Save trq/ae2c4775cf7ecc35346f8f1ee9e4de13 to your computer and use it in GitHub Desktop.
<?php
/**
* @test
*
* @expectedException \RuntimeException
*/
function throws_exception()
{
$sut = new SomeSut();
try {
$sut->someFailingCall();
} catch (\RuntimeException $e) {
// Assertions here
throw $e;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment