Package org.restlet.ext.atom

Examples of org.restlet.ext.atom.Categories


* @author Jerome Louvel
*/
public class AtomTestCase extends RestletTestCase {

    public void testCategories() throws Exception {
        Categories atomCategories = new Categories(
                "clap://class/org/restlet/test/ext/atom/categories.xml");
        assertEquals(new Reference("http://example.com/cats/big3"),
                atomCategories.getScheme());
        assertEquals("animal", atomCategories.getEntries().get(0).getTerm());
    }
View Full Code Here

TOP

Related Classes of org.restlet.ext.atom.Categories

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.