~pbeaman/akiban-persistit/fix-1157809-aioobe-on-append-key-segment

« back to all changes in this revision

Viewing changes to src/test/java/com/persistit/Bug980292Test.java

merge pbeaman: Adds infrastructure needed to support Spring Framework.

https://code.launchpad.net/~pbeaman/akiban-persistit/support-spring-framework/+merge/135208

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        _persistit.checkpoint();
63
63
        txn.rollback();
64
64
        txn.end();
65
 
        final Properties properties = _persistit.getProperties();
66
65
        _persistit.getJournalManager().force();
67
66
        _persistit.crash();
68
 
        _persistit = new Persistit();
69
 
        _persistit.initialize(properties);
 
67
        _persistit = new Persistit(_config);
70
68
        assertEquals(0, _persistit.getRecoveryManager().getErrorCount());
71
69
    }
72
70
}