Skip to content

Instantly share code, notes, and snippets.

@avalanche123
Created May 16, 2011 15:57
Show Gist options
  • Save avalanche123/974712 to your computer and use it in GitHub Desktop.
Save avalanche123/974712 to your computer and use it in GitHub Desktop.
killer testing
<?php
class TestTest extends PHPUnit_Framework_TestCase
{
public function testMock()
{
$user2 = $this->getMock('UserInterface');
$user2->expects($this->any())
->method('getSalt')
->will(
$this->returnCallback(function() use (&$user2) {
return $user2->getSalt();
})
);
$user2->getSalt();
}
}
interface UserInterface
{
function getSalt();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment