Skip to content

Instantly share code, notes, and snippets.

@zacharydanger
Created January 16, 2010 17:16
Show Gist options
  • Save zacharydanger/278900 to your computer and use it in GitHub Desktop.
Save zacharydanger/278900 to your computer and use it in GitHub Desktop.
<?php
require_once 'PHPUnit/Framework.php';
function foobar(Array $array) {
}
class FoobarTest extends PHPUnit_Framework_TestCase {
/**
* @expectedException PHPUnit_Framework_Error
*/
function testFoobar() {
foobar('abc');
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment