}
public void testCopyright() throws Exception {
File inpFile = new File(getDataDir(), "multilink-linkblog.xml");
ChannelIF channel = FeedParser.parse(new ChannelBuilder(), inpFile);
// test copyright text/plain
assertEquals("Copyright (c) 2004 Mark Pilgrim", channel.getCopyright());
inpFile = new File(getDataDir(), "diveintomark.xml");
channel = FeedParser.parse(new ChannelBuilder(), inpFile);
assertEquals("Copyright \u00a9 2004, Mark Pilgrim", channel.getCopyright());
}