use of org.eclipse.collections.impl.math.IntegerSum in project eclipse-collections by eclipse.
the class UnifiedMapTest method batchIterable_forEachEntry_emptySet.
@Test
public void batchIterable_forEachEntry_emptySet() {
// Test forEach on empty set, it should simply do nothing and not throw any exceptions
Sum sum = new IntegerSum(0);
BatchIterable<Map.Entry<Integer, Integer>> empty = (BatchIterable<Map.Entry<Integer, Integer>>) UnifiedMap.newMap().entrySet();
empty.forEach(new EntrySumProcedure(sum));
Assert.assertEquals(0, sum.getValue());
}
use of org.eclipse.collections.impl.math.IntegerSum in project eclipse-collections by eclipse.
the class UnifiedMapTest method batchForEachEntry.
@Test
public void batchForEachEntry() {
// Testing batch size of 1 to 16 with no chains
BatchIterable<Map.Entry<Integer, Integer>> entries = (BatchIterable<Map.Entry<Integer, Integer>>) UnifiedMap.newWithKeysValues(1, 1, 2, 2, 3, 3, 4, 4).entrySet();
for (int sectionCount = 1; sectionCount <= 16; ++sectionCount) {
Sum sum = new IntegerSum(0);
for (int sectionIndex = 0; sectionIndex < sectionCount; ++sectionIndex) {
entries.batchForEach(new EntrySumProcedure(sum), sectionIndex, sectionCount);
}
Assert.assertEquals(20, sum.getValue());
}
}
use of org.eclipse.collections.impl.math.IntegerSum in project eclipse-collections by eclipse.
the class UnifiedMapTest method batchIterable_forEachNullHandling.
private void batchIterable_forEachNullHandling(BatchIterable<Integer> batchIterable, int expectedValue) {
// Testing forEach handling null keys and null values
Sum sum = new IntegerSum(0);
batchIterable.forEach(each -> sum.add(each == null ? 0 : each));
Assert.assertEquals(expectedValue, sum.getValue());
}
use of org.eclipse.collections.impl.math.IntegerSum in project eclipse-collections by eclipse.
the class UnifiedMapTest method batchForEachEntry_chains.
@Test
public void batchForEachEntry_chains() {
BatchIterable<Map.Entry<Integer, Integer>> collisions = (BatchIterable<Map.Entry<Integer, Integer>>) UnifiedMap.<Integer, Integer>newMap(5).withKeysValues(COLLISION_1, 1, COLLISION_2, 2, COLLISION_3, 3, 1, 4).withKeysValues(2, 5, 3, 6).entrySet();
// Testing 1 batch with chains
Sum sum2 = new IntegerSum(0);
// testing getBatchCount returns 1
int numBatches = collisions.getBatchCount(100000);
for (int i = 0; i < numBatches; ++i) {
collisions.batchForEach(new EntrySumProcedure(sum2), i, numBatches);
}
Assert.assertEquals(1, numBatches);
Assert.assertEquals(78, sum2.getValue());
// Testing 3 batches with chains and uneven last batch
Sum sum3 = new IntegerSum(0);
for (int i = 0; i < 5; ++i) {
collisions.batchForEach(new EntrySumProcedure(sum3), i, 5);
}
Assert.assertEquals(78, sum3.getValue());
}
use of org.eclipse.collections.impl.math.IntegerSum in project eclipse-collections by eclipse.
the class UnifiedMapTest method batchForEachNullHandling.
private void batchForEachNullHandling(BatchIterable<Integer> batchIterable, int expectedValue) {
// Testing batchForEach handling null keys and null values
Sum sum = new IntegerSum(0);
for (int i = 0; i < batchIterable.getBatchCount(7); ++i) {
batchIterable.batchForEach(each -> sum.add(each == null ? 1 : each), i, batchIterable.getBatchCount(7));
}
Assert.assertEquals(expectedValue, sum.getValue());
}
Aggregations