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

testDoesSomethingForMasterRequests() public method

    public function testDoesSomethingForMasterRequests()
    {
        $app = $this->getDecoratedAppMock();
        $turbolinks = $this->getTurbolinksMock();
        $turbolinks->expects($this->once())->method('decorateResponse');
        $stack = new StackTurbolinks($app, $turbolinks);
        $stack->handle(new Request(), HttpKernelInterface::MASTER_REQUEST);
    }