~pbeaman/akiban-persistit/dynamic-volumes

« back to all changes in this revision

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

  • Committer: Peter Beaman
  • Date: 2013-03-14 14:36:37 UTC
  • mfrom: (374.37.13 stage)
  • Revision ID: pbeaman@akiban.com-20130314143637-3tn8o0gfb9adqzfg
Merge from trunk with changes for lock pruning fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import static org.junit.Assert.assertTrue;
20
20
 
21
21
import java.lang.ref.WeakReference;
 
22
import java.util.List;
22
23
 
23
24
import org.junit.Test;
24
25
 
48
49
        }
49
50
 
50
51
        @Override
51
 
        public void performAction(final Persistit persistit) throws PersistitException {
 
52
        public void performAction(final Persistit persistit, final List<CleanupAction> consequentActions)
 
53
                throws PersistitException {
52
54
            assertEquals(_last + 1, _sequence);
53
55
            _last = _sequence;
54
56
            _counter++;