StoreClassNotFoundException, StoreInvalidClassException,
StoreDataCorruptedException, StoreNotSerializableException {
if (stackSize(0) > 500) {
smallStackTestExportObject();
} else {
final XmlExporter xmlExporter = new XmlExporter(store);
final BobForExport bobForExport = new BobForExport();
final List<Integer> list = new LinkedList<Integer>();
for (int value = 0; value < 1000; value++) {
list.add(value);
}
bobForExport.setObject(list);
xmlExporter.export(RUNTIME, RUNTIME + "/tmp", bobForExport);
}
}