public function testGetMatcher() {
$this->matcher
->expects($this
->once())
->method('setContext')
->with($this
->equalTo($this->context));
$matcher = $this->router
->getMatcher();
$this
->assertInstanceOf('Symfony\\Component\\Routing\\Matcher\\UrlMatcherInterface', $matcher);
$this
->assertSame($this->matcher, $matcher);
}