5bec7bbd7c86397d190d392bc91a4cd150f1320e
[yaffs-website] / vendor / symfony / routing / Tests / CompiledRouteTest.php
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 PHPUnit\Framework\TestCase;
15 use Symfony\Component\Routing\CompiledRoute;
16
17 class CompiledRouteTest extends TestCase
18 {
19     public function testAccessors()
20     {
21         $compiled = new CompiledRoute('prefix', 'regex', array('tokens'), array(), null, array(), array(), array('variables'));
22         $this->assertEquals('prefix', $compiled->getStaticPrefix(), '__construct() takes a static prefix as its second argument');
23         $this->assertEquals('regex', $compiled->getRegex(), '__construct() takes a regexp as its third argument');
24         $this->assertEquals(array('tokens'), $compiled->getTokens(), '__construct() takes an array of tokens as its fourth argument');
25         $this->assertEquals(array('variables'), $compiled->getVariables(), '__construct() takes an array of variables as its ninth argument');
26     }
27 }