You are here

public function UrlMatcherTest::testMatchingIsEager in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\UrlMatcherTest::testMatchingIsEager()

File

vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php, line 229

Class

UrlMatcherTest

Namespace

Symfony\Component\Routing\Tests\Matcher

Code

public function testMatchingIsEager() {
  $coll = new RouteCollection();
  $coll
    ->add('test', new Route('/{foo}-{bar}-', array(), array(
    'foo' => '.+',
    'bar' => '.+',
  )));
  $matcher = new UrlMatcher($coll, new RequestContext());
  $this
    ->assertEquals(array(
    'foo' => 'text1-text2-text3',
    'bar' => 'text4',
    '_route' => 'test',
  ), $matcher
    ->match('/text1-text2-text3-text4-'));
}