* Create a test feed for matching.
* @return
*/
private SyndFeed createTestFeed()
{
SyndFeedImpl feed = new SyndFeedImpl();
feed.setAuthor("Robert Newhart");
feed.setTitle("Bob's Funny Feed");
feed.setLanguage("en-us");
feed.setEncoding("utf-8");
feed.setCopyright(new Date().toString());
ArrayList entries = new ArrayList();
SyndEntryImpl entry = new SyndEntryImpl();
entry.setPublishedDate(new Date());
entry.setAuthor("Bob Newhart");
entry.setLink("http://bobnewhart.com");
entries.add(entry);
SyndContentImpl description = new SyndContentImpl();
description.setType("text/html");
description.setValue("Remember Those Famous People On the Phone Skits?");
entry.setDescription(description);
ArrayList contents = new ArrayList();
SyndContentImpl content = new SyndContentImpl();
content.setType("text/xhtml");
content.setValue("<div><str>Larry, Darrel, and Darrel</str><br/>Where are they now?</div>");
contents.add(content);
SyndContentImpl content2 = new SyndContentImpl();
content2.setType("text/html");
content2.setValue("<b>News</b><p> Bob wasn't funny on " + new Date());
contents.add(content2);
entry.setContents(contents);
feed.setEntries(entries);
return feed;
}