assertEquals(entry.getContentType(), Content.Type.TEXT);
}
public static void testSection4133ContentNoTypeWithChildren() throws Exception {
//http://feedvalidator.org/testcases/atom/4.1.3.3/content-no-type-with-children.xml
IRI uri = baseURI.resolve("4.1.3.3/content-no-type-with-children.xml");
Document<Feed> doc = get(uri);
assertNotNull(doc);
Entry entry = doc.getRoot().getEntries().get(0);
assertEquals(entry.getContent().trim(), "Some text");
assertEquals(entry.getContentType(), Content.Type.TEXT);