public void testPebbleBlogAtom() throws Exception{
URL url = new File("src/test/resources/pebble-atom.xml").toURI().toURL();
FeedExecuter instance = new AbderaFeedExecuter();
Feed result = instance.getFeed(url);
FeedEntry entry = result.getEntries().get(0);
//final String expOut = "Parliamo di cloud computing...";
//final int startIndex = 15; // first 15 chars are junk
//assertEquals(expOut, entry.getDescription().substring(startIndex, expOut.length() + startIndex));
}