@Test
public void test2ActivitiesMoreThanMinutes() {
int capacity = 1;
TimeHitsHolder timeHitsHolder = new TimeHitsHolder(capacity);
IntValueHolder[] intValueHolders = new IntValueHolder[3];
intValueHolders[0] = new IntValueHolder(new ActivityIntValues(capacity), "10m", 10);
intValueHolders[1] = new IntValueHolder(new ActivityIntValues(capacity), "5m", 5);
intValueHolders[2] = new IntValueHolder(new ActivityIntValues(capacity), "2m", 2);
intValueHolders[0].activityIntValues.fieldValues[0] = 50;
intValueHolders[1].activityIntValues.fieldValues[0] = 10;
intValueHolders[2].activityIntValues.fieldValues[0] = 1;
TimeAggregatedActivityValues.initTimeHits(timeHitsHolder, intValueHolders, 1, 10);
assertTrue(Arrays.equals(new int[] {8, 8, 8, 8, 8, 3, 3, 3, 1, 0}, timeHitsHolder.getActivities(0).array));