39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of the Silex framework.
|
||
|
*
|
||
|
* (c) Fabien Potencier <fabien@symfony.com>
|
||
|
*
|
||
|
* This source file is subject to the MIT license that is bundled
|
||
|
* with this source code in the file LICENSE.
|
||
|
*/
|
||
|
|
||
|
namespace Silex\Tests\Application;
|
||
|
|
||
|
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
|
||
|
|
||
|
/**
|
||
|
* UrlGeneratorTrait test cases.
|
||
|
*
|
||
|
* @author Fabien Potencier <fabien@symfony.com>
|
||
|
*/
|
||
|
class UrlGeneratorTraitTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function testUrl()
|
||
|
{
|
||
|
$app = new UrlGeneratorApplication();
|
||
|
$app['url_generator'] = $this->getMockBuilder('Symfony\Component\Routing\Generator\UrlGeneratorInterface')->disableOriginalConstructor()->getMock();
|
||
|
$app['url_generator']->expects($this->once())->method('generate')->with('foo', array(), UrlGeneratorInterface::ABSOLUTE_URL);
|
||
|
$app->url('foo');
|
||
|
}
|
||
|
|
||
|
public function testPath()
|
||
|
{
|
||
|
$app = new UrlGeneratorApplication();
|
||
|
$app['url_generator'] = $this->getMockBuilder('Symfony\Component\Routing\Generator\UrlGeneratorInterface')->disableOriginalConstructor()->getMock();
|
||
|
$app['url_generator']->expects($this->once())->method('generate')->with('foo', array(), UrlGeneratorInterface::ABSOLUTE_PATH);
|
||
|
$app->path('foo');
|
||
|
}
|
||
|
}
|