for(String suite : path){
Map<String, KoanElementAttributes> methodsByName = new LinkedHashMap<String, KoanElementAttributes>();
KoanSuiteCompilationListener listener = new KoanSuiteCompilationListener();
for(Method m : loader.loadClass(suite, listener).getMethods()){
if(m.getAnnotation(Koan.class) != null){
methodsByName.put(m.getName(), new KoanElementAttributes(m.getName(), "", m.getDeclaringClass().getName()));
}
}
tempSuitesAndMethods.put(suite, methodsByName);
}
Map<String, Map<String, Map<String, KoanElementAttributes>>> stubbedPath =