import static org.mockito.Mockito.verifyZeroInteractions;
public class PathMatchHandlerTest {
@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();