@Test
public void pattern_WithController_WithAction_WithRegexParamPath() {
RegexRoute r = new RegexRoute(new MojaveRoute("cntrl", "actn", "clients/:id<[0-9]+>"));
String expected = "^/cntrl/actn/clients/([0-9]+)$";
String actual = r.pattern().toString();
assertEquals(expected, actual);
}
@Test
public void pattern_WithController_WithAction_WithMultiRegexParamPath() {