Harry Dent
Results
2
issues of
Harry Dent
## Problem Let's say I have a request template that looks like this: ```java @RequestLine("GET /{env}/{resource}") void getResource(@Param("env") String env, @Param("resource") String resource); ``` In the application that defines this...
proposal
Enhancing to `MatcherAssert` to allow for group extraction. Example: ```java Matcher matcher = Pattern.compile("(.+) the (.+)").matcher("Mack the Knife"); assertThat(matcher).groups().containsExactly("Mack", "Knife"); ``` #### Check List: * Unit tests : YES *...