@Test
public void matchesRequestWithFullUri() throws Exception {
HttpHandler handler = mock(HttpHandler.class);
PathMatchHandler pmh = new PathMatchHandler("/hello", handler);
HttpRequest req = new StubHttpRequest("http://host.com:8080/hello");
HttpResponse res = new StubHttpResponse();
HttpControl ctl = new StubHttpControl();
pmh.handleHttpRequest(req, res, ctl);
verify(handler).handleHttpRequest(req, res, ctl);