public void testCreateFolder() {
session = HibernateSessions.startTransaction(this.getClass());
try {
FCKEditorManager fckMgr = new FCKEditorManager(Locale.GERMAN, session);
File f = fckMgr.createFolder("tstblg1", "/foo/bar/images/", null);
assertEquals("images", f.getFilename());
} catch (Exception e) {
HibernateSessions.rollbackTransaction(session,this.getClass());
} finally {
HibernateSessions.finishTransaction(session,this.getClass());