}
public void testGetChmBlockInfo() {
for (Iterator<DirectoryListingEntry> it = chmDirListCont
.getDirectoryListingEntryList().iterator(); it.hasNext();) {
DirectoryListingEntry directoryListingEntry = it.next();
chmBlockInfo = ChmBlockInfo.getChmBlockInfoInstance(
directoryListingEntry, (int) clrt.getBlockLen(),
chmLzxcControlData);
// Assert.assertTrue(!directoryListingEntry.getName().isEmpty() &&
// chmBlockInfo.toString() != null);
Assert.assertTrue(!ChmCommons.isEmpty(directoryListingEntry
.getName()) && chmBlockInfo.toString() != null);
}
}