improved tests

This commit is contained in:
Jindra Pet��k
2013-07-20 09:29:14 +02:00
parent e8807e951d
commit e0c69eeee6
2 changed files with 111 additions and 93 deletions
@@ -89,7 +89,13 @@ public class ExportTest {
File fdir = new File(TESTDATADIR + File.separator + "output" + File.separator + f.getName());
fdir.mkdirs();
swf.exportActionScript(fdir.getAbsolutePath(), false, false);
swf.exportActionScript(new AbortRetryIgnoreHandler() {
@Override
public int handle(Throwable thrown) {
return AbortRetryIgnoreHandler.ABORT;
}
},fdir.getAbsolutePath(), false, false);
} catch (Exception ex) {
fail();
}