in src/main/java/org/apache/sling/servlethelpers/MockSlingHttpServletRequest.java [673:679]
public RequestDispatcher getRequestDispatcher(String path, RequestDispatcherOptions options) {
if (requestDispatcherFactory == null) {
throw new IllegalStateException(
"Please provdide a MockRequestDispatcherFactory (setRequestDispatcherFactory).");
}
return requestDispatcherFactory.getRequestDispatcher(path, options);
}