for(int [] counts : matchersCount) {
final Iterator<TripleMatcherGroup> git = bit.next().iterator();
for(int count : counts) {
assertTrue("Iterator has more data at count=" + count, git.hasNext());
final TripleMatcherGroup g = git.next();
assertEquals("Matchers count matches for " + g, count, g.getMatchers().size());
}
}
}