fs.create(Integer.MAX_VALUE);
fs.close();
//Open the File System
fs = new FileSystem(Constants.ROOT_PATH);
fs.open();
fs.drop(Integer.MAX_VALUE);
assertTrue(new File(Constants.ROOT_PATH + org.jcoredb.system.Constants.PATH_SEP + 0).exists());
assertFalse(new File(Constants.ROOT_PATH + org.jcoredb.system.Constants.PATH_SEP + Integer.MAX_VALUE).exists());
}