public class TestGroupCommit {
// @Test
public void testGroupCommit() throws InterruptedException {
final BaseDataAccessor<ZNRecord> accessor = new Mocks.MockBaseDataAccessor();
final GroupCommit commit = new GroupCommit();
ExecutorService newFixedThreadPool = Executors.newFixedThreadPool(400);
for (int i = 0; i < 2400; i++) {
Runnable runnable = new MyClass(accessor, commit, i);
newFixedThreadPool.submit(runnable);
}