runTests(topModule, topModule.getTests());
}
}
public void test() {
ModuleEnvironment topModule = (ModuleEnvironment) eval.getCurrentEnvt().getRoot();
runTests(topModule, topModule.getTests());
for (String i : topModule.getImports()) {
ModuleEnvironment mod = topModule.getImport(i);
if (mod != null) {
runTests(mod, mod.getTests());
}
}
}