@Override
protected Collection<TestData> makeData(String content, String destURI)
throws Exception {
List<TestData> result = new ArrayList<TestData>();
UURI src = UURIFactory.getInstance("http://www.archive.org/start/");
CrawlURI euri = new CrawlURI(src, null, null,
LinkContext.NAVLINK_MISC);
Recorder recorder = createRecorder(content, "UTF-8");
euri.setContentType("text/html");
euri.setRecorder(recorder);
euri.setContentSize(content.length());
UURI dest = UURIFactory.getInstance(destURI);
LinkContext context = determineContext(content);
Hop hop = determineHop(content);
CrawlURI link = euri.createCrawlURI(dest, context, hop);
result.add(new TestData(euri, link));