Method method = StatusResultMatchers.class.getMethod(methodName);
try {
ResultMatcher matcher = (ResultMatcher) ReflectionUtils.invokeMethod(method, resultMatchers);
try {
MvcResult mvcResult = new StubMvcResult(new MockHttpServletRequest(), null, null, null, null, null, response);
matcher.match(mvcResult);
}
catch (AssertionError error) {
failures.add(error);
}
}