!7 concept A {} concept B {} cmodule TestCountConcepts { transient int m = 100000, n = 1000000; start-thread { repeat m { new A; } repeat n { new B; } time { assertEqualsVerbose(m, countConcepts(A)); assertEqualsVerbose(n, countConcepts(B)); } } }