!7 concept A {} concept B {} static int i = 100000, j = 1000000; p { repeat i { new A; } repeat j { new B; } time "check" { repeat 10 { assertEqualsVerbose(i, countConcepts(A)); } repeat 10 { assertEqualsVerbose(j, countConcepts(B)); } } }