private static TypeAdapter makeAdapterForRegexMethod(String name, Fixture fixture, Matcher matcher) {
Method method = getMethod(name, fixture, matcher);
if (method == null)
throw new NoSuchMethodFitFailureException(name);
return TypeAdapter.on(fixture, method, true);
}