Helthe\Component\Turbolinks\Tests\StackTurbolinksTest::getDecoratedAppMock PHP Method

getDecoratedAppMock() public method

Gets a mock of the decorated HttpKernelInterface app.
public getDecoratedAppMock ( ) : PHPUnit_Framework_MockObject_MockObject
return PHPUnit_Framework_MockObject_MockObject
    public function getDecoratedAppMock()
    {
        $decoratedApp = $this->getMock('Symfony\\Component\\HttpKernel\\HttpKernelInterface');
        $decoratedApp->expects($this->once())->method('handle')->will($this->returnValue(new Response()));
        return $decoratedApp;
    }