WikiPage root = pFac.makeRootPage(SRC, FITNESSE_ROOT_PAGE, componentFactory);
Request request = mock(Request.class);
when(request.getResource()).thenReturn(SUITE_ROOT);
when(request.getQueryString()).thenReturn("suite&format=xml");
verifyNoMoreInteractions(request);
Responder responder = rFac.makeResponder(request, root);
FitNesseContext context = new FitNesseContext(root);
context.rootDirectoryName = FITNESSE_ROOT_PAGE;
context.rootPath = SRC;
context.doNotChunk = true;
context.setRootPagePath();
VelocityFactory.makeVelocityFactory(context);
Response response = responder.makeResponse(context, request);
final StringBuffer sb = new StringBuffer();
ResponseSender sender = new ResponseSender() {
@Override
public void send(byte[] bytes) {