author.setUri("c");
assertNotNull(author);
assertEquals("a", author.getName());
assertEquals("b", author.getEmail());
assertEquals("c", author.getUri().toString());
Category category = factory.newCategory();
assertNotNull(category);
category = factory.newCategory();
category.setScheme("a");
category.setTerm("b");
category.setLabel("c");
assertNotNull(category);
assertEquals("a", category.getScheme().toString());
assertEquals("b", category.getTerm());
assertEquals("c", category.getLabel());
Collection collection = factory.newCollection();
assertNotNull(collection);
Content content = factory.newContent(Content.Type.TEXT);
assertNotNull(content);
assertEquals(Content.Type.TEXT, content.getContentType());