assertThat(route, canHandle(EndSlashAnnotatedGetController.class, "withAbsolutePath"));
}
@Test
public void addsAPrefixToMethodsWhenTheGetControllerAndTheMethodAreAnnotatedWithAbsolutePath() throws Exception {
List<Route> routes = parser.rulesFor(new DefaultBeanClass(GetAnnotatedController.class));
Route route = getRouteMatching(routes, "/prefix/absolutePath");
assertThat(route, canHandle(GetAnnotatedController.class, "withAbsolutePath"));
}