#218 - Internal change - modify SequenceIdGenerator to use Long instead of Integer

This commit is contained in:
rbygrave
2014-12-01 23:35:25 +13:00
parent 8237072f5b
commit 9dd412cd19
2 changed files with 11 additions and 11 deletions
@@ -26,10 +26,12 @@ public class TestSeqBatch extends BaseTestCase {
Object id = d.nextId(null);
Assert.assertNotNull(id);
//System.out.println(id);
for (int i = 0; i < 16; i++) {
Object id2 = d.nextId(null);
Assert.assertNotNull(id2);
Assert.assertNotNull(id2);
//System.out.println(id2);
}
}
}