// Check it works for some different IDs
for (long id = startid; id < maxid; id += 7) {
long totalCount = 0;
for (long linkType: linkTypes) {
totalCount += chooser.calcLinkCount(id, linkType);
}
assertEquals(chooser.calcTotalLinkCount(id), totalCount);
}
}
}