상속: extends Regex, implements eZ\Publish\Core\MVC\Symfony\SiteAccess\VersatileMatcher, implements eZ\Publish\Core\MVC\Symfony\SiteAccess\URILexer
 public function testReverseMatch()
 {
     $semanticURI = '/hihi/hoho';
     $matcher = new URITextMatcher(array('prefix' => 'foo', 'suffix' => 'bar'));
     $matcher->setRequest(new SimplifiedRequest(array('pathinfo' => $semanticURI)));
     $result = $matcher->reverseMatch('something');
     $this->assertInstanceOf('eZ\\Publish\\Core\\MVC\\Symfony\\SiteAccess\\Matcher\\URIText', $result);
     $request = $result->getRequest();
     $this->assertInstanceOf('eZ\\Publish\\Core\\MVC\\Symfony\\Routing\\SimplifiedRequest', $request);
     $this->assertSame("/foosomethingbar{$semanticURI}", $request->pathinfo);
 }