public void xtestCreateCollection() throws DbException {
DbCollection coll = DbCollection.getRootCollection();
DbCollection xmark = coll.createCollection(COL_NAME);
assert (xmark.getDirectory().exists());
File collDir = coll.getDirectory();
File[] matchFiles = collDir.listFiles(new FileFilter() {
public boolean accept(File f) {
return f.isDirectory() && COL_NAME.equals(f.getName());
}
});
assert (matchFiles.length > 0);