From 73c9d923e7cc77847cfcbff4b90ad4815699a4fa Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 22 Aug 2018 03:10:08 +0200 Subject: Renamed RoutingServiceProvider to Http\UrlGeneratorServiceProvider --- tests/Unit/Routing/RoutingServiceProviderTest.php | 29 ------------- tests/Unit/Routing/UrlGeneratorTest.php | 51 ----------------------- 2 files changed, 80 deletions(-) delete mode 100644 tests/Unit/Routing/RoutingServiceProviderTest.php delete mode 100644 tests/Unit/Routing/UrlGeneratorTest.php (limited to 'tests/Unit/Routing') diff --git a/tests/Unit/Routing/RoutingServiceProviderTest.php b/tests/Unit/Routing/RoutingServiceProviderTest.php deleted file mode 100644 index dd9441eb..00000000 --- a/tests/Unit/Routing/RoutingServiceProviderTest.php +++ /dev/null @@ -1,29 +0,0 @@ -getMockBuilder(UrlGenerator::class) - ->getMock(); - - $app = $this->getApp(); - - $this->setExpects($app, 'make', [UrlGenerator::class], $urlGenerator); - $this->setExpects($app, 'instance', ['routing.urlGenerator', $urlGenerator]); - - $serviceProvider = new RoutingServiceProvider($app); - $serviceProvider->register(); - } -} diff --git a/tests/Unit/Routing/UrlGeneratorTest.php b/tests/Unit/Routing/UrlGeneratorTest.php deleted file mode 100644 index 6da59a4f..00000000 --- a/tests/Unit/Routing/UrlGeneratorTest.php +++ /dev/null @@ -1,51 +0,0 @@ - 'abc', 'bla' => 'foo'], 'http://f.b/foo?test=abc&bla=foo'], - ]; - } - - /** - * @dataProvider provideLinksTo - * @covers \Engelsystem\Routing\UrlGenerator::to - * - * @param string $path - * @param string $willReturn - * @param string $urlToPath - * @param string[] $arguments - * @param string $expectedUrl - */ - public function testTo($urlToPath, $path, $willReturn, $arguments, $expectedUrl) - { - $app = new Container(); - $urlGenerator = new UrlGenerator(); - Application::setInstance($app); - - $request = $this->getMockBuilder(Request::class) - ->getMock(); - - $request->expects($this->once()) - ->method('getUriForPath') - ->with($path) - ->willReturn($willReturn); - - $app->instance('request', $request); - - $url = $urlGenerator->to($urlToPath, $arguments); - $this->assertEquals($expectedUrl, $url); - } -} -- cgit v1.2.3-54-g00ecf