public function testCombinedRoutingNonMatch()
 {
     $callbackMock = $this->getMock('stdClass', array('callback'));
     $callbackMock->expects($this->never())->method('callback');
     $nonMatchCallbackMock = $this->getMock('stdClass', array('callback'));
     $nonMatchCallbackMock->expects($this->exactly(1))->method('callback');
     $r = new Router();
     $r->addMethod($r::POST | $r::PUT, '/*', array(), array($callbackMock, 'callback'));
     $r->routeMethod($r::GET, '/foo', array($nonMatchCallbackMock, 'callback'));
 }