Created
May 16, 2011 15:57
-
-
Save avalanche123/974712 to your computer and use it in GitHub Desktop.
killer testing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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