| 3 |
liveuser |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/*
|
|
|
4 |
* This file is part of the Symfony package.
|
|
|
5 |
*
|
|
|
6 |
* (c) Fabien Potencier <fabien@symfony.com>
|
|
|
7 |
*
|
|
|
8 |
* For the full copyright and license information, please view the LICENSE
|
|
|
9 |
* file that was distributed with this source code.
|
|
|
10 |
*/
|
|
|
11 |
|
|
|
12 |
namespace Symfony\Component\Routing\Tests;
|
|
|
13 |
|
|
|
14 |
use Symfony\Component\Routing\CompiledRoute;
|
|
|
15 |
|
|
|
16 |
class CompiledRouteTest extends \PHPUnit_Framework_TestCase
|
|
|
17 |
{
|
|
|
18 |
public function testAccessors()
|
|
|
19 |
{
|
|
|
20 |
$compiled = new CompiledRoute('prefix', 'regex', array('tokens'), array(), array(), array(), array(), array('variables'));
|
|
|
21 |
$this->assertEquals('prefix', $compiled->getStaticPrefix(), '__construct() takes a static prefix as its second argument');
|
|
|
22 |
$this->assertEquals('regex', $compiled->getRegex(), '__construct() takes a regexp as its third argument');
|
|
|
23 |
$this->assertEquals(array('tokens'), $compiled->getTokens(), '__construct() takes an array of tokens as its fourth argument');
|
|
|
24 |
$this->assertEquals(array('variables'), $compiled->getVariables(), '__construct() takes an array of variables as its ninth argument');
|
|
|
25 |
}
|
|
|
26 |
}
|