DocumentId doc1 = new DocumentId(1111L, "no/filter/matches");
DocumentInfo docInfo = documentListPresenter.getDocumentInfo(doc1);
assertThat(docInfo, is(equalTo(new DocumentInfo(doc1, "doc111",
"first/path/", LocaleId.EN_US,
new ContainerTranslationStatistics(), new AuditInfo(new Date(),
"Translator"), new HashMap<String, String>(),
new AuditInfo(new Date(), "last translator")))));
DocumentId doc2 = new DocumentId(3333L, "does/not/match/exact/filter");
docInfo = documentListPresenter.getDocumentInfo(doc2);
assertThat(docInfo, is(equalTo(new DocumentInfo(doc2, "doc123",
"third/path/", LocaleId.EN_US,
new ContainerTranslationStatistics(), new AuditInfo(new Date(),
"Translator"), new HashMap<String, String>(),
new AuditInfo(new Date(), "last translator")))));
}