eZ\Publish\Core\REST\Common\Tests\UrlHandler\PatternTest::testPatternDoesNotMatchTrailing PHP Method

testPatternDoesNotMatchTrailing() public method

Test parsing when pattern does not match the end of the URL.
    public function testPatternDoesNotMatchTrailing()
    {
        $urlHandler = new Common\RequestParser\Pattern(array('pattern' => '/foo/{foo}'));
        $urlHandler->parse('/foo/23/bar');
    }