final private static String BASE_URI = ServerEnvironmentInfo.getBaseURI() + "/optionalproviders/blogservice";
public void testAtomGETBlogs() throws Exception {
RestClient client = new RestClient();
Resource resource = client.resource(BASE_URI);
AtomFeed feed = resource.accept("application/atom+xml").get(AtomFeed.class);
assertEquals(BlogService.ID, feed.getId());
assertEquals(BlogService.ID, feed.getTitle().getValue());
List<AtomLink> expectedLinks = new ArrayList<AtomLink>();
AtomLink link = new AtomLink();