summaryrefslogtreecommitdiff
path: root/tests/Unit/Routing/RoutingServiceProviderTest.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-08-22 03:10:08 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-22 03:10:08 +0200
commit73c9d923e7cc77847cfcbff4b90ad4815699a4fa (patch)
tree76000712338c18a37a433b365cd32a72de2b1805 /tests/Unit/Routing/RoutingServiceProviderTest.php
parentb0e7bc0df2eb4975223582089c7a928903e8cd14 (diff)
Renamed RoutingServiceProvider to Http\UrlGeneratorServiceProvider
Diffstat (limited to 'tests/Unit/Routing/RoutingServiceProviderTest.php')
-rw-r--r--tests/Unit/Routing/RoutingServiceProviderTest.php29
1 files changed, 0 insertions, 29 deletions
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 @@
-<?php
-
-namespace Engelsystem\Test\Unit\Routing;
-
-use Engelsystem\Routing\RoutingServiceProvider;
-use Engelsystem\Routing\UrlGenerator;
-use Engelsystem\Test\Unit\ServiceProviderTest;
-use PHPUnit_Framework_MockObject_MockObject;
-
-class RoutingServiceProviderTest extends ServiceProviderTest
-{
- /**
- * @covers \Engelsystem\Routing\RoutingServiceProvider::register()
- */
- public function testRegister()
- {
- /** @var PHPUnit_Framework_MockObject_MockObject|UrlGenerator $urlGenerator */
- $urlGenerator = $this->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();
- }
-}