Skip to content

Instantly share code, notes, and snippets.

@raul782
Created November 10, 2012 16:11
Show Gist options
  • Save raul782/4051512 to your computer and use it in GitHub Desktop.
Save raul782/4051512 to your computer and use it in GitHub Desktop.
mockbuilder
$stub = $this->getMockBuilder('\PHPPeru\LazyController')
->setConstructorArgs(array($this->container))
->getMock();
$stub->expects($this->once())
->method('lightAction')
->will($this->returnValue('Hello world!'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment