public void testRecoverInsertedEntries() throws IOException {
StringReader reader = new StringReader(this.insert);
List<StorageEntryWrapper> recList = this.recReader.recoverEntries(new BufferedReader(reader));
assertEquals(1,recList.size());
StorageEntryWrapper insWrapper = recList.get(0);
assertEquals(StorageOperation.INSERT,insWrapper.getOperation());
assertEquals(feedId,insWrapper.getFeedId());
assertEquals(entryId,insWrapper.getEntryId());
assertEquals(dateTime,insWrapper.getEntry().getUpdated());
assertEquals(this.title,insWrapper.getEntry().getTitle().getPlainText());
}