@Ignore
public void xtestPutDocument() throws XQueryException, DbException, FileNotFoundException {
StopWatch sw = new StopWatch("testPutDocument");
DbCollection xmark = DbCollection.getRootCollection().createCollection(COL_NAME);
assert (xmark.getDirectory().exists());
final DocumentTableModel dtm = new DocumentTableModel(false);
File file = new File(TEST_FILE);
dtm.loadDocument(new FileInputStream(file));
IDocumentTable doc = dtm.getDocumentTable();
//DbCollection coll = new DbCollection(true);
xmark.putDocument(new Transaction(), file.getName(), doc);
System.err.println(sw);
}