private function getKernel($returnValue) { $kernel = $this ->getMock('Symfony\\Component\\HttpKernel\\HttpKernelInterface'); $kernel ->expects($this ->any()) ->method('handle') ->will($returnValue); return $kernel; }