Package org.wiztools.commons.feed

Examples of org.wiztools.commons.feed.FeedEntry


    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));
    }
View Full Code Here

TOP

Related Classes of org.wiztools.commons.feed.FeedEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.