cs.setDefaultTtl(3000);
/* test RDF behavior, this feed has an updatePeriod element */
File inpFile = new File(getDataDir(), "slashdot-010604.rdf");
try {
ChannelIF channel = FeedParser.parse(new ChannelBuilder(), inpFile);
//test RSS0.91 behavior
// default ttl used
assertEquals(60 * 60 * 1000, cs.getTtl(channel, -1L));
String url = new Feed(channel).getLocation().toString();
FM.removeFeed(url);
channel = FeedParser.parse(new ChannelBuilder(), inpFile);
//System.err.println("channel:"+channel);
url = new Feed(channel).getLocation().toString();
FeedIF feedRef1 = FM.addFeed(url);
t1 = feedRef1.getLastUpdated().getTime();
try {