use of org.geometerplus.fbreader.description.Author in project FBReaderJ by geometer.
the class TestDescriptionBook method testAuthor.
public void testAuthor() {
BookDescription bd = BookDescription.getDescription(myDirectory + "/" + filename);
assertTrue(bd != null);
Author author = bd.getAuthor();
assertTrue(author != null);
assertEquals(author.getDisplayName(), "����� ������");
assertEquals(author.getSortKey(), "������");
assertEquals(author.isSingle(), true);
}
Aggregations