engelsystem/tests/Unit/Http/UrlGeneratorServiceProvider...

30 lines
913 B
PHP
Raw Normal View History

2017-10-31 13:40:13 +01:00
<?php
namespace Engelsystem\Test\Unit\Routing;
2017-10-31 13:40:13 +01:00
use Engelsystem\Http\UrlGenerator;
use Engelsystem\Http\UrlGeneratorServiceProvider;
2017-10-31 14:15:19 +01:00
use Engelsystem\Test\Unit\ServiceProviderTest;
2017-10-31 13:40:13 +01:00
use PHPUnit_Framework_MockObject_MockObject;
class UrlGeneratorServiceProviderTest extends ServiceProviderTest
2017-10-31 13:40:13 +01:00
{
/**
* @covers \Engelsystem\Http\UrlGeneratorServiceProvider::register()
2017-10-31 13:40:13 +01:00
*/
public function testRegister()
{
/** @var PHPUnit_Framework_MockObject_MockObject|UrlGenerator $urlGenerator */
$urlGenerator = $this->getMockBuilder(UrlGenerator::class)
->getMock();
2017-10-31 14:15:19 +01:00
$app = $this->getApp();
2017-10-31 13:40:13 +01:00
2017-10-31 14:15:19 +01:00
$this->setExpects($app, 'make', [UrlGenerator::class], $urlGenerator);
$this->setExpects($app, 'instance', ['http.urlGenerator', $urlGenerator]);
2017-10-31 13:40:13 +01:00
$serviceProvider = new UrlGeneratorServiceProvider($app);
2017-10-31 13:40:13 +01:00
$serviceProvider->register();
}
}