Skip to content

Instantly share code, notes, and snippets.

@ericsaboia
Created November 30, 2012 18:35
Show Gist options
  • Save ericsaboia/4177613 to your computer and use it in GitHub Desktop.
Save ericsaboia/4177613 to your computer and use it in GitHub Desktop.
First TDD Step in PHP
class SomeTest extends PHPUnit_Framework_TestCase
{
public function methodRunShouldExist()
{
$example = new ExampleClass();
$this->assertTrue(method_exists($example, 'run'));
}
}
class ExampleClass
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment