MockRequest request = makeRequest(baseUrl);
request.addInput("remoteUsername", "joe");
request.addInput("remotePassword", "blow");
Response response = getResponse(request);
MockResponseSender sender = new MockResponseSender();
sender.doSending(response);
String content = sender.sentData();
assertNotSubString("requires authentication", content);
assertSubString("3 pages were imported.", content);
}