.getProcessEngineConfiguration().getCommandExecutor()
.execute(new Command<Object>() {
public Object execute(CommandContext commandContext) {
DbSqlSession dbSqlSession = commandContext.getSession(DbSqlSession.class);
dbSqlSession.dbSchemaDrop();
dbSqlSession.dbSchemaCreate();
return null;
}
});
throw new AssertionError(outputMessage.toString());