'abc'], 'http://foo.bar/index.php?p=foo&test=abc'], ]; } /** * @dataProvider provideLinksTo * @covers \Engelsystem\Http\LegacyUrlGenerator::to * * @param string $urlToPath * @param string $willReturn * @param string[] $arguments * @param string $expectedUrl */ public function testTo($urlToPath, $willReturn, $arguments, $expectedUrl) { $app = new Container(); Application::setInstance($app); $request = $this->getMockBuilder(Request::class) ->getMock(); $request->expects($this->once()) ->method('getUriForPath') ->with('/index.php') ->willReturn($willReturn); $app->instance('request', $request); $urlGenerator = new LegacyUrlGenerator(); $this->assertInstanceOf(UrlGeneratorInterface::class, $urlGenerator); $url = $urlGenerator->to($urlToPath, $arguments); $this->assertEquals($expectedUrl, $url); } }