checkSimpleFeed(getFeed("http://localhost:" + PORT + "/atom/logs").getEntries());
checkSimpleFeed(getFeed("http://localhost:" + PORT + "/atom/logs").getEntries());
List<Entry> entries = new LinkedList<Entry>();
WebClient wcEntry = WebClient.create("http://localhost:" + PORT + "/atom/logs",
Collections.singletonList(new AtomEntryProvider()))
.accept("application/atom+xml;type=entry");
for (int i = 0; i < 8; i++) {
Entry entry = wcEntry.path("entry/" + i).get(Entry.class);
entry.toString();
entries.add(entry);