You are here

public function RedirectableUrlMatcherTest::testRedirectWhenNoSlashForNonSafeMethod in Zircon Profile 8

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

@expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException

File

vendor/symfony/routing/Tests/Matcher/RedirectableUrlMatcherTest.php, line 33

Class

RedirectableUrlMatcherTest

Namespace

Symfony\Component\Routing\Tests\Matcher

Code

public function testRedirectWhenNoSlashForNonSafeMethod() {
  $coll = new RouteCollection();
  $coll
    ->add('foo', new Route('/foo/'));
  $context = new RequestContext();
  $context
    ->setMethod('POST');
  $matcher = $this
    ->getMockForAbstractClass('Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcher', array(
    $coll,
    $context,
  ));
  $matcher
    ->match('/foo');
}