callback.runTest(f, this);
// And then iterate to next configuration setting combo:
int i = 0;
for (; i < len; ++i) {
InputTestConfig cfg = (InputTestConfig) mConfigs.get(i);
// Still more settings for this config? Then let's break:
if (cfg.nextConfig(f)) {
break;
}
// Nope, need to reset this one, and continue for next:
cfg.firstConfig(f);
}
// Got them all done?
if (i == len) {
break;